plotly.js figure reference
plotly.js charts are described declaratively as JSON objects. Every aspect of a plotly chart (the colors, the grids, the data, and so on) has a corresponding JSON attribute. This page contains an extensive list of these attributes.
Plotly's graph description places attributes into two categories: traces (objects that describe a single series of data in a graph) and layout (attributes that apply to the rest of the chart, like the title, xaxis, or annotations). Traces are categorized by chart type (e.g. scatter, heatmap).
Here is a simple example of a plotly chart inlined with links to each attribute's reference section.
data = [
{
"type": "scatter", // all "scatter" attributes: https://plot.ly/javascript/reference/#scatter
"x": [1, 2, 3], // more about "x": #scatter-x
"y": [3, 1, 6], // #scatter-y
"marker": { // marker is an object, valid marker keys: #scatter-marker
"color": "rgb(16, 32, 77)" // more about "marker.color": #scatter-marker-color
}
},
{
"type": "bar", // all "bar" chart attributes: #bar
"x": [1, 2, 3], // more about "x": #bar-x
"y": [3, 1, 6], // #bar-y
"name": "bar chart example" // #bar-name
}
];
layout = { // all "layout" attributes: #layout
"title": "simple example", // more about "layout.title": #layout-title
"xaxis": { // all "layout.xaxis" attributes: #layout-xaxis
"title": "time" // more about "layout.xaxis.title": #layout-xaxis-title
},
"annotations": [ // all "annotation" attributes: #layout-annotations
{
"text": "simple annotation", // #layout-annotations-text
"x": 0, // #layout-annotations-x
"xref": "paper", // #layout-annotations-xref
"y": 0, // #layout-annotations-y
"yref": "paper" // #layout-annotations-yref
}
]
}
scatter trace is an object with the key "type" equal to "scatter" (i.e. {"type": "scatter"}) and any of the keys listed below.
"scatter")
enumerated:
true
|
false
|
"legendonly"
)
true
boolean)
true
string)
""
number between or equal to 0 and 1)
1
string)
string)
""
flaglist string)
"x", "y", "z", "text", "name" joined with a "+"
OR "all" or "none".
"x", "y", "x+y", "x+y+z", "all"
"all"
object)
string)
number greater than or equal to 0)
data array)
number or categorical coordinate string)
0
number)
1
data array)
number or categorical coordinate string)
0
number)
1
string)
""
flaglist string)
"lines", "markers", "text" joined with a "+"
OR "none".
"lines", "markers", "lines+markers", "lines+markers+text", "none"
object)
color)
number greater than or equal to 0)
2
enumerated:
"linear"
|
"spline"
|
"hv"
|
"vh"
|
"hvh"
|
"vhv"
)
"linear"
number between or equal to 0 and 1.3)
1
string)
"solid"
boolean)
enumerated:
"none"
|
"tozeroy"
|
"tozerox"
|
"tonexty"
|
"tonextx"
)
"none"
color)
object)
enumerated:
"0"
|
"circle"
|
"100"
|
"circle-open"
|
"200"
|
"circle-dot"
|
"300"
|
"circle-open-dot"
|
"1"
|
"square"
|
"101"
|
"square-open"
|
"201"
|
"square-dot"
|
"301"
|
"square-open-dot"
|
"2"
|
"diamond"
|
"102"
|
"diamond-open"
|
"202"
|
"diamond-dot"
|
"302"
|
"diamond-open-dot"
|
"3"
|
"cross"
|
"103"
|
"cross-open"
|
"203"
|
"cross-dot"
|
"303"
|
"cross-open-dot"
|
"4"
|
"x"
|
"104"
|
"x-open"
|
"204"
|
"x-dot"
|
"304"
|
"x-open-dot"
|
"5"
|
"triangle-up"
|
"105"
|
"triangle-up-open"
|
"205"
|
"triangle-up-dot"
|
"305"
|
"triangle-up-open-dot"
|
"6"
|
"triangle-down"
|
"106"
|
"triangle-down-open"
|
"206"
|
"triangle-down-dot"
|
"306"
|
"triangle-down-open-dot"
|
"7"
|
"triangle-left"
|
"107"
|
"triangle-left-open"
|
"207"
|
"triangle-left-dot"
|
"307"
|
"triangle-left-open-dot"
|
"8"
|
"triangle-right"
|
"108"
|
"triangle-right-open"
|
"208"
|
"triangle-right-dot"
|
"308"
|
"triangle-right-open-dot"
|
"9"
|
"triangle-ne"
|
"109"
|
"triangle-ne-open"
|
"209"
|
"triangle-ne-dot"
|
"309"
|
"triangle-ne-open-dot"
|
"10"
|
"triangle-se"
|
"110"
|
"triangle-se-open"
|
"210"
|
"triangle-se-dot"
|
"310"
|
"triangle-se-open-dot"
|
"11"
|
"triangle-sw"
|
"111"
|
"triangle-sw-open"
|
"211"
|
"triangle-sw-dot"
|
"311"
|
"triangle-sw-open-dot"
|
"12"
|
"triangle-nw"
|
"112"
|
"triangle-nw-open"
|
"212"
|
"triangle-nw-dot"
|
"312"
|
"triangle-nw-open-dot"
|
"13"
|
"pentagon"
|
"113"
|
"pentagon-open"
|
"213"
|
"pentagon-dot"
|
"313"
|
"pentagon-open-dot"
|
"14"
|
"hexagon"
|
"114"
|
"hexagon-open"
|
"214"
|
"hexagon-dot"
|
"314"
|
"hexagon-open-dot"
|
"15"
|
"hexagon2"
|
"115"
|
"hexagon2-open"
|
"215"
|
"hexagon2-dot"
|
"315"
|
"hexagon2-open-dot"
|
"16"
|
"octagon"
|
"116"
|
"octagon-open"
|
"216"
|
"octagon-dot"
|
"316"
|
"octagon-open-dot"
|
"17"
|
"star"
|
"117"
|
"star-open"
|
"217"
|
"star-dot"
|
"317"
|
"star-open-dot"
|
"18"
|
"hexagram"
|
"118"
|
"hexagram-open"
|
"218"
|
"hexagram-dot"
|
"318"
|
"hexagram-open-dot"
|
"19"
|
"star-triangle-up"
|
"119"
|
"star-triangle-up-open"
|
"219"
|
"star-triangle-up-dot"
|
"319"
|
"star-triangle-up-open-dot"
|
"20"
|
"star-triangle-down"
|
"120"
|
"star-triangle-down-open"
|
"220"
|
"star-triangle-down-dot"
|
"320"
|
"star-triangle-down-open-dot"
|
"21"
|
"star-square"
|
"121"
|
"star-square-open"
|
"221"
|
"star-square-dot"
|
"321"
|
"star-square-open-dot"
|
"22"
|
"star-diamond"
|
"122"
|
"star-diamond-open"
|
"222"
|
"star-diamond-dot"
|
"322"
|
"star-diamond-open-dot"
|
"23"
|
"diamond-tall"
|
"123"
|
"diamond-tall-open"
|
"223"
|
"diamond-tall-dot"
|
"323"
|
"diamond-tall-open-dot"
|
"24"
|
"diamond-wide"
|
"124"
|
"diamond-wide-open"
|
"224"
|
"diamond-wide-dot"
|
"324"
|
"diamond-wide-open-dot"
|
"25"
|
"hourglass"
|
"125"
|
"hourglass-open"
|
"26"
|
"bowtie"
|
"126"
|
"bowtie-open"
|
"27"
|
"circle-cross"
|
"127"
|
"circle-cross-open"
|
"28"
|
"circle-x"
|
"128"
|
"circle-x-open"
|
"29"
|
"square-cross"
|
"129"
|
"square-cross-open"
|
"30"
|
"square-x"
|
"130"
|
"square-x-open"
|
"31"
|
"diamond-cross"
|
"131"
|
"diamond-cross-open"
|
"32"
|
"diamond-x"
|
"132"
|
"diamond-x-open"
|
"33"
|
"cross-thin"
|
"133"
|
"cross-thin-open"
|
"34"
|
"x-thin"
|
"134"
|
"x-thin-open"
|
"35"
|
"asterisk"
|
"135"
|
"asterisk-open"
|
"36"
|
"hash"
|
"136"
|
"hash-open"
|
"236"
|
"hash-dot"
|
"336"
|
"hash-open-dot"
|
"37"
|
"y-up"
|
"137"
|
"y-up-open"
|
"38"
|
"y-down"
|
"138"
|
"y-down-open"
|
"39"
|
"y-left"
|
"139"
|
"y-left-open"
|
"40"
|
"y-right"
|
"140"
|
"y-right-open"
|
"41"
|
"line-ew"
|
"141"
|
"line-ew-open"
|
"42"
|
"line-ns"
|
"142"
|
"line-ns-open"
|
"43"
|
"line-ne"
|
"143"
|
"line-ne-open"
|
"44"
|
"line-nw"
|
"144"
|
"line-nw-open"
)
"circle"
number between or equal to 0 and 1)
number greater than or equal to 0)
6
color)
number greater than or equal to 0)
0
number)
1
number greater than or equal to 0)
0
enumerated:
"diameter"
|
"area"
)
"diameter"
colorscale)
boolean)
true
number)
number)
boolean)
true
boolean)
boolean)
object)
color)
number greater than or equal to 0)
colorscale)
boolean)
true
number)
number)
boolean)
true
boolean)
object)
enumerated:
"fraction"
|
"pixels"
)
"pixels"
number greater than or equal to 0)
30
enumerated:
"fraction"
|
"pixels"
)
"fraction"
number greater than or equal to 0)
1
number)
1.02
enumerated:
"left"
|
"center"
|
"right"
)
"left"
number greater than or equal to 0)
10
number)
0.5
enumerated:
"top"
|
"middle"
|
"bottom"
)
"middle"
number greater than or equal to 0)
10
color)
"#444"
number greater than or equal to 0)
1
color)
"#444"
number greater than or equal to 0)
0
color)
"rgba(0,0,0,0)"
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
""
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
"Click to enter colorscale title"
object)
enumerated:
"right"
|
"top"
|
"bottom"
)
"top"
enumerated:
"top left"
|
"top center"
|
"top right"
|
"middle left"
|
"middle center"
|
"middle right"
|
"bottom left"
|
"bottom center"
|
"bottom right"
)
"middle center"
object)
data array)
data array)
object)
boolean)
enumerated:
"percent"
|
"constant"
|
"sqrt"
|
"data"
)
boolean)
data array)
data array)
number greater than or equal to 0)
10
number greater than or equal to 0)
10
integer greater than or equal to 0)
0
integer greater than or equal to 0)
0
boolean)
boolean)
color)
number greater than or equal to 0)
2
number greater than or equal to 0)
object)
boolean)
enumerated:
"percent"
|
"constant"
|
"sqrt"
|
"data"
)
boolean)
data array)
data array)
number greater than or equal to 0)
10
number greater than or equal to 0)
10
integer greater than or equal to 0)
0
integer greater than or equal to 0)
0
boolean)
boolean)
color)
number greater than or equal to 0)
2
number greater than or equal to 0)
axisid)
x
axisid)
y
bar trace is an object with the key "type" equal to "bar" (i.e. {"type": "bar"}) and any of the keys listed below.
"bar")
enumerated:
true
|
false
|
"legendonly"
)
true
boolean)
true
string)
""
number between or equal to 0 and 1)
1
string)
string)
""
flaglist string)
"x", "y", "z", "text", "name" joined with a "+"
OR "all" or "none".
"x", "y", "x+y", "x+y+z", "all"
"all"
object)
string)
number greater than or equal to 0)
data array)
number or categorical coordinate string)
0
number)
1
data array)
number or categorical coordinate string)
0
number)
1
string)
""
enumerated:
"v"
|
"h"
)
object)
color)
colorscale)
boolean)
true
number)
number)
boolean)
true
boolean)
boolean)
object)
color)
colorscale)
boolean)
true
number)
number)
number greater than or equal to 0)
boolean)
true
boolean)
object)
enumerated:
"fraction"
|
"pixels"
)
"pixels"
number greater than or equal to 0)
30
enumerated:
"fraction"
|
"pixels"
)
"fraction"
number greater than or equal to 0)
1
number)
1.02
enumerated:
"left"
|
"center"
|
"right"
)
"left"
number greater than or equal to 0)
10
number)
0.5
enumerated:
"top"
|
"middle"
|
"bottom"
)
"middle"
number greater than or equal to 0)
10
color)
"#444"
number greater than or equal to 0)
1
color)
"#444"
number greater than or equal to 0)
0
color)
"rgba(0,0,0,0)"
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
""
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
"Click to enter colorscale title"
object)
enumerated:
"right"
|
"top"
|
"bottom"
)
"top"
data array)
data array)
object)
boolean)
enumerated:
"percent"
|
"constant"
|
"sqrt"
|
"data"
)
boolean)
data array)
data array)
number greater than or equal to 0)
10
number greater than or equal to 0)
10
integer greater than or equal to 0)
0
integer greater than or equal to 0)
0
boolean)
boolean)
color)
number greater than or equal to 0)
2
number greater than or equal to 0)
object)
boolean)
enumerated:
"percent"
|
"constant"
|
"sqrt"
|
"data"
)
boolean)
data array)
data array)
number greater than or equal to 0)
10
number greater than or equal to 0)
10
integer greater than or equal to 0)
0
integer greater than or equal to 0)
0
boolean)
boolean)
color)
number greater than or equal to 0)
2
number greater than or equal to 0)
axisid)
x
axisid)
y
box trace is an object with the key "type" equal to "box" (i.e. {"type": "box"}) and any of the keys listed below.
"box")
enumerated:
true
|
false
|
"legendonly"
)
true
boolean)
true
string)
""
number between or equal to 0 and 1)
1
string)
string)
""
flaglist string)
"x", "y", "z", "text", "name" joined with a "+"
OR "all" or "none".
"x", "y", "x+y", "x+y+z", "all"
"all"
object)
string)
number greater than or equal to 0)
data array)
data array)
number or categorical coordinate string)
number or categorical coordinate string)
number between or equal to 0 and 1)
0.5
enumerated:
"all"
|
"outliers"
|
"suspectedoutliers"
|
false
)
"outliers"
enumerated:
true
|
"sd"
|
false
)
number between or equal to 0 and 1)
number between or equal to -2 and 2)
enumerated:
"v"
|
"h"
)
object)
color)
"rgba(0,0,0,0)"
enumerated:
"0"
|
"circle"
|
"100"
|
"circle-open"
|
"200"
|
"circle-dot"
|
"300"
|
"circle-open-dot"
|
"1"
|
"square"
|
"101"
|
"square-open"
|
"201"
|
"square-dot"
|
"301"
|
"square-open-dot"
|
"2"
|
"diamond"
|
"102"
|
"diamond-open"
|
"202"
|
"diamond-dot"
|
"302"
|
"diamond-open-dot"
|
"3"
|
"cross"
|
"103"
|
"cross-open"
|
"203"
|
"cross-dot"
|
"303"
|
"cross-open-dot"
|
"4"
|
"x"
|
"104"
|
"x-open"
|
"204"
|
"x-dot"
|
"304"
|
"x-open-dot"
|
"5"
|
"triangle-up"
|
"105"
|
"triangle-up-open"
|
"205"
|
"triangle-up-dot"
|
"305"
|
"triangle-up-open-dot"
|
"6"
|
"triangle-down"
|
"106"
|
"triangle-down-open"
|
"206"
|
"triangle-down-dot"
|
"306"
|
"triangle-down-open-dot"
|
"7"
|
"triangle-left"
|
"107"
|
"triangle-left-open"
|
"207"
|
"triangle-left-dot"
|
"307"
|
"triangle-left-open-dot"
|
"8"
|
"triangle-right"
|
"108"
|
"triangle-right-open"
|
"208"
|
"triangle-right-dot"
|
"308"
|
"triangle-right-open-dot"
|
"9"
|
"triangle-ne"
|
"109"
|
"triangle-ne-open"
|
"209"
|
"triangle-ne-dot"
|
"309"
|
"triangle-ne-open-dot"
|
"10"
|
"triangle-se"
|
"110"
|
"triangle-se-open"
|
"210"
|
"triangle-se-dot"
|
"310"
|
"triangle-se-open-dot"
|
"11"
|
"triangle-sw"
|
"111"
|
"triangle-sw-open"
|
"211"
|
"triangle-sw-dot"
|
"311"
|
"triangle-sw-open-dot"
|
"12"
|
"triangle-nw"
|
"112"
|
"triangle-nw-open"
|
"212"
|
"triangle-nw-dot"
|
"312"
|
"triangle-nw-open-dot"
|
"13"
|
"pentagon"
|
"113"
|
"pentagon-open"
|
"213"
|
"pentagon-dot"
|
"313"
|
"pentagon-open-dot"
|
"14"
|
"hexagon"
|
"114"
|
"hexagon-open"
|
"214"
|
"hexagon-dot"
|
"314"
|
"hexagon-open-dot"
|
"15"
|
"hexagon2"
|
"115"
|
"hexagon2-open"
|
"215"
|
"hexagon2-dot"
|
"315"
|
"hexagon2-open-dot"
|
"16"
|
"octagon"
|
"116"
|
"octagon-open"
|
"216"
|
"octagon-dot"
|
"316"
|
"octagon-open-dot"
|
"17"
|
"star"
|
"117"
|
"star-open"
|
"217"
|
"star-dot"
|
"317"
|
"star-open-dot"
|
"18"
|
"hexagram"
|
"118"
|
"hexagram-open"
|
"218"
|
"hexagram-dot"
|
"318"
|
"hexagram-open-dot"
|
"19"
|
"star-triangle-up"
|
"119"
|
"star-triangle-up-open"
|
"219"
|
"star-triangle-up-dot"
|
"319"
|
"star-triangle-up-open-dot"
|
"20"
|
"star-triangle-down"
|
"120"
|
"star-triangle-down-open"
|
"220"
|
"star-triangle-down-dot"
|
"320"
|
"star-triangle-down-open-dot"
|
"21"
|
"star-square"
|
"121"
|
"star-square-open"
|
"221"
|
"star-square-dot"
|
"321"
|
"star-square-open-dot"
|
"22"
|
"star-diamond"
|
"122"
|
"star-diamond-open"
|
"222"
|
"star-diamond-dot"
|
"322"
|
"star-diamond-open-dot"
|
"23"
|
"diamond-tall"
|
"123"
|
"diamond-tall-open"
|
"223"
|
"diamond-tall-dot"
|
"323"
|
"diamond-tall-open-dot"
|
"24"
|
"diamond-wide"
|
"124"
|
"diamond-wide-open"
|
"224"
|
"diamond-wide-dot"
|
"324"
|
"diamond-wide-open-dot"
|
"25"
|
"hourglass"
|
"125"
|
"hourglass-open"
|
"26"
|
"bowtie"
|
"126"
|
"bowtie-open"
|
"27"
|
"circle-cross"
|
"127"
|
"circle-cross-open"
|
"28"
|
"circle-x"
|
"128"
|
"circle-x-open"
|
"29"
|
"square-cross"
|
"129"
|
"square-cross-open"
|
"30"
|
"square-x"
|
"130"
|
"square-x-open"
|
"31"
|
"diamond-cross"
|
"131"
|
"diamond-cross-open"
|
"32"
|
"diamond-x"
|
"132"
|
"diamond-x-open"
|
"33"
|
"cross-thin"
|
"133"
|
"cross-thin-open"
|
"34"
|
"x-thin"
|
"134"
|
"x-thin-open"
|
"35"
|
"asterisk"
|
"135"
|
"asterisk-open"
|
"36"
|
"hash"
|
"136"
|
"hash-open"
|
"236"
|
"hash-dot"
|
"336"
|
"hash-open-dot"
|
"37"
|
"y-up"
|
"137"
|
"y-up-open"
|
"38"
|
"y-down"
|
"138"
|
"y-down-open"
|
"39"
|
"y-left"
|
"139"
|
"y-left-open"
|
"40"
|
"y-right"
|
"140"
|
"y-right-open"
|
"41"
|
"line-ew"
|
"141"
|
"line-ew-open"
|
"42"
|
"line-ns"
|
"142"
|
"line-ns-open"
|
"43"
|
"line-ne"
|
"143"
|
"line-ne-open"
|
"44"
|
"line-nw"
|
"144"
|
"line-nw-open"
)
"circle"
number between or equal to 0 and 1)
1
number greater than or equal to 0)
6
color)
object)
color)
"#444"
number greater than or equal to 0)
0
color)
number greater than or equal to 0)
1
object)
color)
axisid)
x
axisid)
y
heatmap trace is an object with the key "type" equal to "heatmap" (i.e. {"type": "heatmap"}) and any of the keys listed below.
"heatmap")
enumerated:
true
|
false
|
"legendonly"
)
true
boolean)
true
string)
""
number between or equal to 0 and 1)
1
string)
string)
""
flaglist string)
"x", "y", "z", "text", "name" joined with a "+"
OR "all" or "none".
"x", "y", "x+y", "x+y+z", "all"
"all"
object)
string)
number greater than or equal to 0)
data array)
data array)
number or categorical coordinate string)
0
number)
1
data array)
number or categorical coordinate string)
0
number)
1
data array)
boolean)
enumerated:
"array"
|
"scaled"
)
enumerated:
"array"
|
"scaled"
)
boolean)
true
number)
number)
colorscale)
boolean)
boolean)
boolean)
true
enumerated:
"fast"
|
"best"
|
false
)
boolean)
object)
enumerated:
"fraction"
|
"pixels"
)
"pixels"
number greater than or equal to 0)
30
enumerated:
"fraction"
|
"pixels"
)
"fraction"
number greater than or equal to 0)
1
number)
1.02
enumerated:
"left"
|
"center"
|
"right"
)
"left"
number greater than or equal to 0)
10
number)
0.5
enumerated:
"top"
|
"middle"
|
"bottom"
)
"middle"
number greater than or equal to 0)
10
color)
"#444"
number greater than or equal to 0)
1
color)
"#444"
number greater than or equal to 0)
0
color)
"rgba(0,0,0,0)"
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
""
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
"Click to enter colorscale title"
object)
enumerated:
"right"
|
"top"
|
"bottom"
)
"top"
axisid)
x
axisid)
y
histogram trace is an object with the key "type" equal to "histogram" (i.e. {"type": "histogram"}) and any of the keys listed below.
"histogram")
enumerated:
true
|
false
|
"legendonly"
)
true
boolean)
true
string)
""
number between or equal to 0 and 1)
1
string)
string)
""
flaglist string)
"x", "y", "z", "text", "name" joined with a "+"
OR "all" or "none".
"x", "y", "x+y", "x+y+z", "all"
"all"
object)
string)
number greater than or equal to 0)
data array)
number or categorical coordinate string)
0
number)
1
data array)
number or categorical coordinate string)
0
number)
1
string)
""
enumerated:
"v"
|
"h"
)
object)
data array)
colorscale)
boolean)
true
number)
number)
boolean)
true
boolean)
boolean)
object)
color)
colorscale)
boolean)
true
number)
number)
number greater than or equal to 0)
boolean)
true
boolean)
object)
enumerated:
"fraction"
|
"pixels"
)
"pixels"
number greater than or equal to 0)
30
enumerated:
"fraction"
|
"pixels"
)
"fraction"
number greater than or equal to 0)
1
number)
1.02
enumerated:
"left"
|
"center"
|
"right"
)
"left"
number greater than or equal to 0)
10
number)
0.5
enumerated:
"top"
|
"middle"
|
"bottom"
)
"middle"
number greater than or equal to 0)
10
color)
"#444"
number greater than or equal to 0)
1
color)
"#444"
number greater than or equal to 0)
0
color)
"rgba(0,0,0,0)"
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
""
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
"Click to enter colorscale title"
object)
enumerated:
"right"
|
"top"
|
"bottom"
)
"top"
data array)
data array)
data array)
enumerated:
"count"
|
"sum"
|
"avg"
|
"min"
|
"max"
)
"count"
enumerated:
""
|
"percent"
|
"probability"
|
"density"
|
"probability density"
)
""
boolean)
true
integer greater than or equal to 0)
0
object)
boolean)
true
integer greater than or equal to 0)
0
object)
object)
boolean)
enumerated:
"percent"
|
"constant"
|
"sqrt"
|
"data"
)
boolean)
data array)
data array)
number greater than or equal to 0)
10
number greater than or equal to 0)
10
integer greater than or equal to 0)
0
integer greater than or equal to 0)
0
boolean)
boolean)
color)
number greater than or equal to 0)
2
number greater than or equal to 0)
object)
boolean)
enumerated:
"percent"
|
"constant"
|
"sqrt"
|
"data"
)
boolean)
data array)
data array)
number greater than or equal to 0)
10
number greater than or equal to 0)
10
integer greater than or equal to 0)
0
integer greater than or equal to 0)
0
boolean)
boolean)
color)
number greater than or equal to 0)
2
number greater than or equal to 0)
axisid)
x
axisid)
y
histogram2d trace is an object with the key "type" equal to "histogram2d" (i.e. {"type": "histogram2d"}) and any of the keys listed below.
"histogram2d")
enumerated:
true
|
false
|
"legendonly"
)
true
boolean)
true
string)
""
number between or equal to 0 and 1)
1
string)
string)
""
flaglist string)
"x", "y", "z", "text", "name" joined with a "+"
OR "all" or "none".
"x", "y", "x+y", "x+y+z", "all"
"all"
object)
string)
number greater than or equal to 0)
data array)
data array)
number or categorical coordinate string)
0
number)
1
data array)
number or categorical coordinate string)
0
number)
1
data array)
boolean)
enumerated:
"array"
|
"scaled"
)
enumerated:
"array"
|
"scaled"
)
boolean)
true
number)
number)
colorscale)
boolean)
boolean)
boolean)
true
enumerated:
"fast"
|
"best"
|
false
)
boolean)
object)
enumerated:
"fraction"
|
"pixels"
)
"pixels"
number greater than or equal to 0)
30
enumerated:
"fraction"
|
"pixels"
)
"fraction"
number greater than or equal to 0)
1
number)
1.02
enumerated:
"left"
|
"center"
|
"right"
)
"left"
number greater than or equal to 0)
10
number)
0.5
enumerated:
"top"
|
"middle"
|
"bottom"
)
"middle"
number greater than or equal to 0)
10
color)
"#444"
number greater than or equal to 0)
1
color)
"#444"
number greater than or equal to 0)
0
color)
"rgba(0,0,0,0)"
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
""
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
"Click to enter colorscale title"
object)
enumerated:
"right"
|
"top"
|
"bottom"
)
"top"
object)
enumerated:
"v"
|
"h"
)
enumerated:
"count"
|
"sum"
|
"avg"
|
"min"
|
"max"
)
"count"
enumerated:
""
|
"percent"
|
"probability"
|
"density"
|
"probability density"
)
""
boolean)
true
integer greater than or equal to 0)
0
object)
boolean)
true
integer greater than or equal to 0)
0
object)
axisid)
x
axisid)
y
pie trace is an object with the key "type" equal to "pie" (i.e. {"type": "pie"}) and any of the keys listed below.
"pie")
enumerated:
true
|
false
|
"legendonly"
)
true
boolean)
true
string)
""
number between or equal to 0 and 1)
1
string)
string)
""
flaglist string)
"label", "text", "value", "percent", "name" joined with a "+"
OR "all" or "none".
"label", "text", "label+text", "label+text+value", "all"
"all"
object)
string)
number greater than or equal to 0)
data array)
number)
0
number)
1
object)
data array)
string)
""
flaglist string)
"label", "text", "value", "percent" joined with a "+"
OR "none".
"label", "text", "label+text", "label+text+value", "none"
enumerated:
"inside"
|
"outside"
|
"auto"
|
"none"
)
"auto"
object)
object)
object)
object)
number between or equal to 0 and 1)
0
boolean)
true
enumerated:
"clockwise"
|
"counterclockwise"
)
"counterclockwise"
number between or equal to -360 and 360)
0
number between or equal to 0 and 1)
0
contour trace is an object with the key "type" equal to "contour" (i.e. {"type": "contour"}) and any of the keys listed below.
"contour")
enumerated:
true
|
false
|
"legendonly"
)
true
boolean)
true
string)
""
number between or equal to 0 and 1)
1
string)
string)
""
flaglist string)
"x", "y", "z", "text", "name" joined with a "+"
OR "all" or "none".
"x", "y", "x+y", "x+y+z", "all"
"all"
object)
string)
number greater than or equal to 0)
data array)
data array)
number or categorical coordinate string)
0
number)
1
data array)
number or categorical coordinate string)
0
number)
1
data array)
boolean)
enumerated:
"array"
|
"scaled"
)
enumerated:
"array"
|
"scaled"
)
boolean)
true
number)
number)
colorscale)
boolean)
boolean)
boolean)
true
enumerated:
"fast"
|
"best"
|
false
)
boolean)
object)
enumerated:
"fraction"
|
"pixels"
)
"pixels"
number greater than or equal to 0)
30
enumerated:
"fraction"
|
"pixels"
)
"fraction"
number greater than or equal to 0)
1
number)
1.02
enumerated:
"left"
|
"center"
|
"right"
)
"left"
number greater than or equal to 0)
10
number)
0.5
enumerated:
"top"
|
"middle"
|
"bottom"
)
"middle"
number greater than or equal to 0)
10
color)
"#444"
number greater than or equal to 0)
1
color)
"#444"
number greater than or equal to 0)
0
color)
"rgba(0,0,0,0)"
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
""
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
"Click to enter colorscale title"
object)
enumerated:
"right"
|
"top"
|
"bottom"
)
"top"
boolean)
true
integer)
0
object)
number)
number)
number)
enumerated:
"fill"
|
"heatmap"
|
"lines"
|
"none"
)
"fill"
boolean)
true
object)
color)
number greater than or equal to 0)
2
string)
"solid"
number between or equal to 0 and 1.3)
1
axisid)
x
axisid)
y
histogram2dcontour trace is an object with the key "type" equal to "histogram2dcontour" (i.e. {"type": "histogram2dcontour"}) and any of the keys listed below.
"histogram2dcontour")
enumerated:
true
|
false
|
"legendonly"
)
true
boolean)
true
string)
""
number between or equal to 0 and 1)
1
string)
string)
""
flaglist string)
"x", "y", "z", "text", "name" joined with a "+"
OR "all" or "none".
"x", "y", "x+y", "x+y+z", "all"
"all"
object)
string)
number greater than or equal to 0)
data array)
data array)
number or categorical coordinate string)
0
number)
1
data array)
number or categorical coordinate string)
0
number)
1
data array)
boolean)
enumerated:
"array"
|
"scaled"
)
enumerated:
"array"
|
"scaled"
)
boolean)
true
number)
number)
colorscale)
boolean)
boolean)
boolean)
true
enumerated:
"fast"
|
"best"
|
false
)
boolean)
object)
enumerated:
"fraction"
|
"pixels"
)
"pixels"
number greater than or equal to 0)
30
enumerated:
"fraction"
|
"pixels"
)
"fraction"
number greater than or equal to 0)
1
number)
1.02
enumerated:
"left"
|
"center"
|
"right"
)
"left"
number greater than or equal to 0)
10
number)
0.5
enumerated:
"top"
|
"middle"
|
"bottom"
)
"middle"
number greater than or equal to 0)
10
color)
"#444"
number greater than or equal to 0)
1
color)
"#444"
number greater than or equal to 0)
0
color)
"rgba(0,0,0,0)"
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
""
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
"Click to enter colorscale title"
object)
enumerated:
"right"
|
"top"
|
"bottom"
)
"top"
object)
enumerated:
"v"
|
"h"
)
enumerated:
"count"
|
"sum"
|
"avg"
|
"min"
|
"max"
)
"count"
enumerated:
""
|
"percent"
|
"probability"
|
"density"
|
"probability density"
)
""
boolean)
true
integer greater than or equal to 0)
0
object)
boolean)
true
integer greater than or equal to 0)
0
object)
boolean)
true
integer)
0
object)
number)
number)
number)
enumerated:
"fill"
|
"heatmap"
|
"lines"
|
"none"
)
"fill"
boolean)
true
object)
color)
number greater than or equal to 0)
2
string)
"solid"
number between or equal to 0 and 1.3)
1
axisid)
x
axisid)
y
scatter3d trace is an object with the key "type" equal to "scatter3d" (i.e. {"type": "scatter3d"}) and any of the keys listed below.
"scatter3d")
enumerated:
true
|
false
|
"legendonly"
)
true
boolean)
true
string)
""
number between or equal to 0 and 1)
1
string)
string)
""
flaglist string)
"x", "y", "z", "text", "name" joined with a "+"
OR "all" or "none".
"x", "y", "x+y", "x+y+z", "all"
"all"
object)
string)
number greater than or equal to 0)
data array)
data array)
data array)
string)
""
flaglist string)
"lines", "markers", "text" joined with a "+"
OR "none".
"lines", "markers", "lines+markers", "lines+markers+text", "none"
"lines+markers"
enumerated:
"-1"
|
"0"
|
"1"
|
"2"
)
"-1"
color)
object)
object)
boolean)
number between or equal to 0 and 1)
1
number between or equal to 0 and 10)
0.6666666666666666
object)
boolean)
number between or equal to 0 and 1)
1
number between or equal to 0 and 10)
0.6666666666666666
object)
boolean)
number between or equal to 0 and 1)
1
number between or equal to 0 and 10)
0.6666666666666666
object)
object)
color)
enumerated:
"circle"
|
"circle-open"
|
"square"
|
"square-open"
|
"diamond"
|
"diamond-open"
|
"cross"
|
"x"
)
"circle"
number greater than or equal to 0)
8
number)
1
number greater than or equal to 0)
0
enumerated:
"diameter"
|
"area"
)
"diameter"
number between or equal to 0 and 1)
colorscale)
boolean)
true
number)
number)
boolean)
true
boolean)
boolean)
object)
color)
number greater than or equal to 0)
colorscale)
boolean)
true
number)
number)
boolean)
true
boolean)
object)
enumerated:
"fraction"
|
"pixels"
)
"pixels"
number greater than or equal to 0)
30
enumerated:
"fraction"
|
"pixels"
)
"fraction"
number greater than or equal to 0)
1
number)
1.02
enumerated:
"left"
|
"center"
|
"right"
)
"left"
number greater than or equal to 0)
10
number)
0.5
enumerated:
"top"
|
"middle"
|
"bottom"
)
"middle"
number greater than or equal to 0)
10
color)
"#444"
number greater than or equal to 0)
1
color)
"#444"
number greater than or equal to 0)
0
color)
"rgba(0,0,0,0)"
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
""
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
"Click to enter colorscale title"
object)
enumerated:
"right"
|
"top"
|
"bottom"
)
"top"
enumerated:
"top left"
|
"top center"
|
"top right"
|
"middle left"
|
"middle center"
|
"middle right"
|
"bottom left"
|
"bottom center"
|
"bottom right"
)
"top center"
object)
object)
boolean)
enumerated:
"percent"
|
"constant"
|
"sqrt"
|
"data"
)
boolean)
data array)
data array)
number greater than or equal to 0)
10
number greater than or equal to 0)
10
integer greater than or equal to 0)
0
integer greater than or equal to 0)
0
boolean)
boolean)
color)
number greater than or equal to 0)
2
number greater than or equal to 0)
object)
boolean)
enumerated:
"percent"
|
"constant"
|
"sqrt"
|
"data"
)
boolean)
data array)
data array)
number greater than or equal to 0)
10
number greater than or equal to 0)
10
integer greater than or equal to 0)
0
integer greater than or equal to 0)
0
boolean)
boolean)
color)
number greater than or equal to 0)
2
number greater than or equal to 0)
object)
boolean)
enumerated:
"percent"
|
"constant"
|
"sqrt"
|
"data"
)
boolean)
data array)
data array)
number greater than or equal to 0)
10
number greater than or equal to 0)
10
integer greater than or equal to 0)
0
integer greater than or equal to 0)
0
boolean)
boolean)
color)
number greater than or equal to 0)
2
number greater than or equal to 0)
sceneid)
scene
surface trace is an object with the key "type" equal to "surface" (i.e. {"type": "surface"}) and any of the keys listed below.
"surface")
enumerated:
true
|
false
|
"legendonly"
)
true
boolean)
true
string)
""
number between or equal to 0 and 1)
1
string)
string)
""
flaglist string)
"x", "y", "z", "text", "name" joined with a "+"
OR "all" or "none".
"x", "y", "x+y", "x+y+z", "all"
"all"
object)
string)
number greater than or equal to 0)
data array)
data array)
data array)
data array)
boolean)
true
number)
number)
colorscale)
boolean)
boolean)
boolean)
true
object)
object)
boolean)
object)
color)
"#000"
boolean)
number between or equal to 1 and 16)
2
boolean)
color)
"#000"
number between or equal to 1 and 16)
2
object)
boolean)
object)
color)
"#000"
boolean)
number between or equal to 1 and 16)
2
boolean)
color)
"#000"
number between or equal to 1 and 16)
2
object)
boolean)
object)
color)
"#000"
boolean)
number between or equal to 1 and 16)
2
boolean)
color)
"#000"
number between or equal to 1 and 16)
2
boolean)
object)
object)
enumerated:
"fraction"
|
"pixels"
)
"pixels"
number greater than or equal to 0)
30
enumerated:
"fraction"
|
"pixels"
)
"fraction"
number greater than or equal to 0)
1
number)
1.02
enumerated:
"left"
|
"center"
|
"right"
)
"left"
number greater than or equal to 0)
10
number)
0.5
enumerated:
"top"
|
"middle"
|
"bottom"
)
"middle"
number greater than or equal to 0)
10
color)
"#444"
number greater than or equal to 0)
1
color)
"#444"
number greater than or equal to 0)
0
color)
"rgba(0,0,0,0)"
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
""
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
"Click to enter colorscale title"
object)
enumerated:
"right"
|
"top"
|
"bottom"
)
"top"
sceneid)
scene
mesh3d trace is an object with the key "type" equal to "mesh3d" (i.e. {"type": "mesh3d"}) and any of the keys listed below.
"mesh3d")
enumerated:
true
|
false
|
"legendonly"
)
true
boolean)
true
string)
""
number between or equal to 0 and 1)
1
string)
string)
""
flaglist string)
"x", "y", "z", "text", "name" joined with a "+"
OR "all" or "none".
"x", "y", "x+y", "x+y+z", "all"
"all"
object)
string)
number greater than or equal to 0)
data array)
data array)
data array)
data array)
data array)
data array)
enumerated:
"x"
|
"y"
|
"z"
)
"z"
number)
-1
data array)
color)
data array)
data array)
boolean)
object)
colorscale)
boolean)
boolean)
true
object)
object)
enumerated:
"fraction"
|
"pixels"
)
"pixels"
number greater than or equal to 0)
30
enumerated:
"fraction"
|
"pixels"
)
"fraction"
number greater than or equal to 0)
1
number)
1.02
enumerated:
"left"
|
"center"
|
"right"
)
"left"
number greater than or equal to 0)
10
number)
0.5
enumerated:
"top"
|
"middle"
|
"bottom"
)
"middle"
number greater than or equal to 0)
10
color)
"#444"
number greater than or equal to 0)
1
color)
"#444"
number greater than or equal to 0)
0
color)
"rgba(0,0,0,0)"
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
""
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
"Click to enter colorscale title"
object)
enumerated:
"right"
|
"top"
|
"bottom"
)
"top"
sceneid)
scene
scattergeo trace is an object with the key "type" equal to "scattergeo" (i.e. {"type": "scattergeo"}) and any of the keys listed below.
"scattergeo")
enumerated:
true
|
false
|
"legendonly"
)
true
boolean)
true
string)
""
number between or equal to 0 and 1)
1
string)
string)
""
flaglist string)
"lon", "lat", "location", "text", "name" joined with a "+"
OR "all" or "none".
"lon", "lat", "lon+lat", "lon+lat+location", "all"
"all"
object)
string)
number greater than or equal to 0)
data array)
data array)
data array)
enumerated:
"ISO-3"
|
"USA-states"
|
"country names"
)
"ISO-3"
flaglist string)
"lines", "markers", "text" joined with a "+"
OR "none".
"lines", "markers", "lines+markers", "lines+markers+text", "none"
"markers"
string)
""
object)
object)
enumerated:
"0"
|
"circle"
|
"100"
|
"circle-open"
|
"200"
|
"circle-dot"
|
"300"
|
"circle-open-dot"
|
"1"
|
"square"
|
"101"
|
"square-open"
|
"201"
|
"square-dot"
|
"301"
|
"square-open-dot"
|
"2"
|
"diamond"
|
"102"
|
"diamond-open"
|
"202"
|
"diamond-dot"
|
"302"
|
"diamond-open-dot"
|
"3"
|
"cross"
|
"103"
|
"cross-open"
|
"203"
|
"cross-dot"
|
"303"
|
"cross-open-dot"
|
"4"
|
"x"
|
"104"
|
"x-open"
|
"204"
|
"x-dot"
|
"304"
|
"x-open-dot"
|
"5"
|
"triangle-up"
|
"105"
|
"triangle-up-open"
|
"205"
|
"triangle-up-dot"
|
"305"
|
"triangle-up-open-dot"
|
"6"
|
"triangle-down"
|
"106"
|
"triangle-down-open"
|
"206"
|
"triangle-down-dot"
|
"306"
|
"triangle-down-open-dot"
|
"7"
|
"triangle-left"
|
"107"
|
"triangle-left-open"
|
"207"
|
"triangle-left-dot"
|
"307"
|
"triangle-left-open-dot"
|
"8"
|
"triangle-right"
|
"108"
|
"triangle-right-open"
|
"208"
|
"triangle-right-dot"
|
"308"
|
"triangle-right-open-dot"
|
"9"
|
"triangle-ne"
|
"109"
|
"triangle-ne-open"
|
"209"
|
"triangle-ne-dot"
|
"309"
|
"triangle-ne-open-dot"
|
"10"
|
"triangle-se"
|
"110"
|
"triangle-se-open"
|
"210"
|
"triangle-se-dot"
|
"310"
|
"triangle-se-open-dot"
|
"11"
|
"triangle-sw"
|
"111"
|
"triangle-sw-open"
|
"211"
|
"triangle-sw-dot"
|
"311"
|
"triangle-sw-open-dot"
|
"12"
|
"triangle-nw"
|
"112"
|
"triangle-nw-open"
|
"212"
|
"triangle-nw-dot"
|
"312"
|
"triangle-nw-open-dot"
|
"13"
|
"pentagon"
|
"113"
|
"pentagon-open"
|
"213"
|
"pentagon-dot"
|
"313"
|
"pentagon-open-dot"
|
"14"
|
"hexagon"
|
"114"
|
"hexagon-open"
|
"214"
|
"hexagon-dot"
|
"314"
|
"hexagon-open-dot"
|
"15"
|
"hexagon2"
|
"115"
|
"hexagon2-open"
|
"215"
|
"hexagon2-dot"
|
"315"
|
"hexagon2-open-dot"
|
"16"
|
"octagon"
|
"116"
|
"octagon-open"
|
"216"
|
"octagon-dot"
|
"316"
|
"octagon-open-dot"
|
"17"
|
"star"
|
"117"
|
"star-open"
|
"217"
|
"star-dot"
|
"317"
|
"star-open-dot"
|
"18"
|
"hexagram"
|
"118"
|
"hexagram-open"
|
"218"
|
"hexagram-dot"
|
"318"
|
"hexagram-open-dot"
|
"19"
|
"star-triangle-up"
|
"119"
|
"star-triangle-up-open"
|
"219"
|
"star-triangle-up-dot"
|
"319"
|
"star-triangle-up-open-dot"
|
"20"
|
"star-triangle-down"
|
"120"
|
"star-triangle-down-open"
|
"220"
|
"star-triangle-down-dot"
|
"320"
|
"star-triangle-down-open-dot"
|
"21"
|
"star-square"
|
"121"
|
"star-square-open"
|
"221"
|
"star-square-dot"
|
"321"
|
"star-square-open-dot"
|
"22"
|
"star-diamond"
|
"122"
|
"star-diamond-open"
|
"222"
|
"star-diamond-dot"
|
"322"
|
"star-diamond-open-dot"
|
"23"
|
"diamond-tall"
|
"123"
|
"diamond-tall-open"
|
"223"
|
"diamond-tall-dot"
|
"323"
|
"diamond-tall-open-dot"
|
"24"
|
"diamond-wide"
|
"124"
|
"diamond-wide-open"
|
"224"
|
"diamond-wide-dot"
|
"324"
|
"diamond-wide-open-dot"
|
"25"
|
"hourglass"
|
"125"
|
"hourglass-open"
|
"26"
|
"bowtie"
|
"126"
|
"bowtie-open"
|
"27"
|
"circle-cross"
|
"127"
|
"circle-cross-open"
|
"28"
|
"circle-x"
|
"128"
|
"circle-x-open"
|
"29"
|
"square-cross"
|
"129"
|
"square-cross-open"
|
"30"
|
"square-x"
|
"130"
|
"square-x-open"
|
"31"
|
"diamond-cross"
|
"131"
|
"diamond-cross-open"
|
"32"
|
"diamond-x"
|
"132"
|
"diamond-x-open"
|
"33"
|
"cross-thin"
|
"133"
|
"cross-thin-open"
|
"34"
|
"x-thin"
|
"134"
|
"x-thin-open"
|
"35"
|
"asterisk"
|
"135"
|
"asterisk-open"
|
"36"
|
"hash"
|
"136"
|
"hash-open"
|
"236"
|
"hash-dot"
|
"336"
|
"hash-open-dot"
|
"37"
|
"y-up"
|
"137"
|
"y-up-open"
|
"38"
|
"y-down"
|
"138"
|
"y-down-open"
|
"39"
|
"y-left"
|
"139"
|
"y-left-open"
|
"40"
|
"y-right"
|
"140"
|
"y-right-open"
|
"41"
|
"line-ew"
|
"141"
|
"line-ew-open"
|
"42"
|
"line-ns"
|
"142"
|
"line-ns-open"
|
"43"
|
"line-ne"
|
"143"
|
"line-ne-open"
|
"44"
|
"line-nw"
|
"144"
|
"line-nw-open"
)
"circle"
number between or equal to 0 and 1)
number greater than or equal to 0)
6
number)
1
number greater than or equal to 0)
0
enumerated:
"diameter"
|
"area"
)
"diameter"
color)
colorscale)
boolean)
true
number)
number)
boolean)
true
boolean)
boolean)
object)
color)
number greater than or equal to 0)
colorscale)
boolean)
true
number)
number)
boolean)
true
boolean)
object)
enumerated:
"fraction"
|
"pixels"
)
"pixels"
number greater than or equal to 0)
30
enumerated:
"fraction"
|
"pixels"
)
"fraction"
number greater than or equal to 0)
1
number)
1.02
enumerated:
"left"
|
"center"
|
"right"
)
"left"
number greater than or equal to 0)
10
number)
0.5
enumerated:
"top"
|
"middle"
|
"bottom"
)
"middle"
number greater than or equal to 0)
10
color)
"#444"
number greater than or equal to 0)
1
color)
"#444"
number greater than or equal to 0)
0
color)
"rgba(0,0,0,0)"
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
""
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
"Click to enter colorscale title"
object)
enumerated:
"right"
|
"top"
|
"bottom"
)
"top"
object)
enumerated:
"top left"
|
"top center"
|
"top right"
|
"middle left"
|
"middle center"
|
"middle right"
|
"bottom left"
|
"bottom center"
|
"bottom right"
)
"middle center"
geoid)
geo
choropleth trace is an object with the key "type" equal to "choropleth" (i.e. {"type": "choropleth"}) and any of the keys listed below.
"choropleth")
enumerated:
true
|
false
|
"legendonly"
)
true
boolean)
true
string)
""
number between or equal to 0 and 1)
1
string)
string)
""
flaglist string)
"location", "z", "text", "name" joined with a "+"
OR "all" or "none".
"location", "z", "location+z", "location+z+text", "all"
"all"
object)
string)
number greater than or equal to 0)
data array)
enumerated:
"ISO-3"
|
"USA-states"
|
"country names"
)
"ISO-3"
data array)
data array)
object)
boolean)
true
number)
number)
colorscale)
boolean)
true
boolean)
boolean)
true
object)
enumerated:
"fraction"
|
"pixels"
)
"pixels"
number greater than or equal to 0)
30
enumerated:
"fraction"
|
"pixels"
)
"fraction"
number greater than or equal to 0)
1
number)
1.02
enumerated:
"left"
|
"center"
|
"right"
)
"left"
number greater than or equal to 0)
10
number)
0.5
enumerated:
"top"
|
"middle"
|
"bottom"
)
"middle"
number greater than or equal to 0)
10
color)
"#444"
number greater than or equal to 0)
1
color)
"#444"
number greater than or equal to 0)
0
color)
"rgba(0,0,0,0)"
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
""
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
"Click to enter colorscale title"
object)
enumerated:
"right"
|
"top"
|
"bottom"
)
"top"
geoid)
geo
area trace is an object with the key "type" equal to "area" (i.e. {"type": "area"}) and any of the keys listed below.
"area")
enumerated:
true
|
false
|
"legendonly"
)
true
boolean)
true
string)
""
number between or equal to 0 and 1)
1
string)
string)
""
flaglist string)
"x", "y", "z", "text", "name" joined with a "+"
OR "all" or "none".
"x", "y", "x+y", "x+y+z", "all"
"all"
object)
string)
number greater than or equal to 0)
data array)
data array)
object)
color)
number greater than or equal to 0)
6
enumerated:
"0"
|
"circle"
|
"100"
|
"circle-open"
|
"200"
|
"circle-dot"
|
"300"
|
"circle-open-dot"
|
"1"
|
"square"
|
"101"
|
"square-open"
|
"201"
|
"square-dot"
|
"301"
|
"square-open-dot"
|
"2"
|
"diamond"
|
"102"
|
"diamond-open"
|
"202"
|
"diamond-dot"
|
"302"
|
"diamond-open-dot"
|
"3"
|
"cross"
|
"103"
|
"cross-open"
|
"203"
|
"cross-dot"
|
"303"
|
"cross-open-dot"
|
"4"
|
"x"
|
"104"
|
"x-open"
|
"204"
|
"x-dot"
|
"304"
|
"x-open-dot"
|
"5"
|
"triangle-up"
|
"105"
|
"triangle-up-open"
|
"205"
|
"triangle-up-dot"
|
"305"
|
"triangle-up-open-dot"
|
"6"
|
"triangle-down"
|
"106"
|
"triangle-down-open"
|
"206"
|
"triangle-down-dot"
|
"306"
|
"triangle-down-open-dot"
|
"7"
|
"triangle-left"
|
"107"
|
"triangle-left-open"
|
"207"
|
"triangle-left-dot"
|
"307"
|
"triangle-left-open-dot"
|
"8"
|
"triangle-right"
|
"108"
|
"triangle-right-open"
|
"208"
|
"triangle-right-dot"
|
"308"
|
"triangle-right-open-dot"
|
"9"
|
"triangle-ne"
|
"109"
|
"triangle-ne-open"
|
"209"
|
"triangle-ne-dot"
|
"309"
|
"triangle-ne-open-dot"
|
"10"
|
"triangle-se"
|
"110"
|
"triangle-se-open"
|
"210"
|
"triangle-se-dot"
|
"310"
|
"triangle-se-open-dot"
|
"11"
|
"triangle-sw"
|
"111"
|
"triangle-sw-open"
|
"211"
|
"triangle-sw-dot"
|
"311"
|
"triangle-sw-open-dot"
|
"12"
|
"triangle-nw"
|
"112"
|
"triangle-nw-open"
|
"212"
|
"triangle-nw-dot"
|
"312"
|
"triangle-nw-open-dot"
|
"13"
|
"pentagon"
|
"113"
|
"pentagon-open"
|
"213"
|
"pentagon-dot"
|
"313"
|
"pentagon-open-dot"
|
"14"
|
"hexagon"
|
"114"
|
"hexagon-open"
|
"214"
|
"hexagon-dot"
|
"314"
|
"hexagon-open-dot"
|
"15"
|
"hexagon2"
|
"115"
|
"hexagon2-open"
|
"215"
|
"hexagon2-dot"
|
"315"
|
"hexagon2-open-dot"
|
"16"
|
"octagon"
|
"116"
|
"octagon-open"
|
"216"
|
"octagon-dot"
|
"316"
|
"octagon-open-dot"
|
"17"
|
"star"
|
"117"
|
"star-open"
|
"217"
|
"star-dot"
|
"317"
|
"star-open-dot"
|
"18"
|
"hexagram"
|
"118"
|
"hexagram-open"
|
"218"
|
"hexagram-dot"
|
"318"
|
"hexagram-open-dot"
|
"19"
|
"star-triangle-up"
|
"119"
|
"star-triangle-up-open"
|
"219"
|
"star-triangle-up-dot"
|
"319"
|
"star-triangle-up-open-dot"
|
"20"
|
"star-triangle-down"
|
"120"
|
"star-triangle-down-open"
|
"220"
|
"star-triangle-down-dot"
|
"320"
|
"star-triangle-down-open-dot"
|
"21"
|
"star-square"
|
"121"
|
"star-square-open"
|
"221"
|
"star-square-dot"
|
"321"
|
"star-square-open-dot"
|
"22"
|
"star-diamond"
|
"122"
|
"star-diamond-open"
|
"222"
|
"star-diamond-dot"
|
"322"
|
"star-diamond-open-dot"
|
"23"
|
"diamond-tall"
|
"123"
|
"diamond-tall-open"
|
"223"
|
"diamond-tall-dot"
|
"323"
|
"diamond-tall-open-dot"
|
"24"
|
"diamond-wide"
|
"124"
|
"diamond-wide-open"
|
"224"
|
"diamond-wide-dot"
|
"324"
|
"diamond-wide-open-dot"
|
"25"
|
"hourglass"
|
"125"
|
"hourglass-open"
|
"26"
|
"bowtie"
|
"126"
|
"bowtie-open"
|
"27"
|
"circle-cross"
|
"127"
|
"circle-cross-open"
|
"28"
|
"circle-x"
|
"128"
|
"circle-x-open"
|
"29"
|
"square-cross"
|
"129"
|
"square-cross-open"
|
"30"
|
"square-x"
|
"130"
|
"square-x-open"
|
"31"
|
"diamond-cross"
|
"131"
|
"diamond-cross-open"
|
"32"
|
"diamond-x"
|
"132"
|
"diamond-x-open"
|
"33"
|
"cross-thin"
|
"133"
|
"cross-thin-open"
|
"34"
|
"x-thin"
|
"134"
|
"x-thin-open"
|
"35"
|
"asterisk"
|
"135"
|
"asterisk-open"
|
"36"
|
"hash"
|
"136"
|
"hash-open"
|
"236"
|
"hash-dot"
|
"336"
|
"hash-open-dot"
|
"37"
|
"y-up"
|
"137"
|
"y-up-open"
|
"38"
|
"y-down"
|
"138"
|
"y-down-open"
|
"39"
|
"y-left"
|
"139"
|
"y-left-open"
|
"40"
|
"y-right"
|
"140"
|
"y-right-open"
|
"41"
|
"line-ew"
|
"141"
|
"line-ew-open"
|
"42"
|
"line-ns"
|
"142"
|
"line-ns-open"
|
"43"
|
"line-ne"
|
"143"
|
"line-ne-open"
|
"44"
|
"line-nw"
|
"144"
|
"line-nw-open"
)
"circle"
number between or equal to 0 and 1)
object)
string)
"Click to enter Plot title"
object)
enumerated:
true
|
false
|
"initial"
)
number greater than or equal to 10)
700
number greater than or equal to 10)
450
object)
number greater than or equal to 0)
80
number greater than or equal to 0)
80
number greater than or equal to 0)
100
number greater than or equal to 0)
80
number greater than or equal to 0)
0
boolean)
true
color)
"#fff"
color)
"#fff"
string)
".,"
boolean)
enumerated:
false
)
boolean)
enumerated:
"zoom"
|
"pan"
|
"orbit"
|
"turntable"
)
enumerated:
"x"
|
"y"
|
"closest"
|
false
)
object)
string)
object)
enumerated:
"-"
|
"linear"
|
"log"
|
"date"
|
"category"
)
"-"
enumerated:
true
|
false
|
"reversed"
)
true
enumerated:
"normal"
|
"tozero"
|
"nonnegative"
)
"normal"
array)
boolean)
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
enumerated:
true
|
"ticks"
|
false
|
"all"
|
"allticks"
)
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
string)
""
string)
""
boolean)
color)
"#444"
number greater than or equal to 0)
1
boolean)
color)
"#eee"
number greater than or equal to 0)
1
boolean)
color)
"#444"
number)
1
enumerated:
"free"
|
"/^x([2-9]|[1-9][0-9]+)?$/"
|
"/^y([2-9]|[1-9][0-9]+)?$/"
)
enumerated:
"top"
|
"bottom"
|
"left"
|
"right"
)
enumerated:
"free"
|
"/^x([2-9]|[1-9][0-9]+)?$/"
|
"/^y([2-9]|[1-9][0-9]+)?$/"
)
array)
[0, 1]
number between or equal to 0 and 1)
0
object)
string)
object)
enumerated:
"-"
|
"linear"
|
"log"
|
"date"
|
"category"
)
"-"
enumerated:
true
|
false
|
"reversed"
)
true
enumerated:
"normal"
|
"tozero"
|
"nonnegative"
)
"normal"
array)
boolean)
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
enumerated:
true
|
"ticks"
|
false
|
"all"
|
"allticks"
)
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
string)
""
string)
""
boolean)
color)
"#444"
number greater than or equal to 0)
1
boolean)
color)
"#eee"
number greater than or equal to 0)
1
boolean)
color)
"#444"
number)
1
enumerated:
"free"
|
"/^x([2-9]|[1-9][0-9]+)?$/"
|
"/^y([2-9]|[1-9][0-9]+)?$/"
)
enumerated:
"top"
|
"bottom"
|
"left"
|
"right"
)
enumerated:
"free"
|
"/^x([2-9]|[1-9][0-9]+)?$/"
|
"/^y([2-9]|[1-9][0-9]+)?$/"
)
array)
[0, 1]
number between or equal to 0 and 1)
0
object)
color)
"rgba(0,0,0,0)"
object)
object)
object)
object)
object)
enumerated:
"auto"
|
"cube"
|
"data"
|
"manual"
)
"auto"
object)
object)
boolean)
true
boolean)
true
number greater than or equal to 0)
2
color)
"rgb(0,0,0)"
boolean)
color)
"rgba(204, 204, 204, 0.5)"
boolean)
true
string)
object)
enumerated:
"-"
|
"linear"
|
"log"
|
"date"
|
"category"
)
"-"
enumerated:
true
|
false
|
"reversed"
)
true
enumerated:
"normal"
|
"tozero"
|
"nonnegative"
)
"normal"
array)
boolean)
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
enumerated:
true
|
"ticks"
|
false
|
"all"
|
"allticks"
)
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
string)
""
string)
""
boolean)
color)
"#444"
number greater than or equal to 0)
1
boolean)
color)
"rgb(204, 204, 204)"
number greater than or equal to 0)
1
boolean)
color)
"#444"
number)
1
object)
boolean)
true
boolean)
true
number greater than or equal to 0)
2
color)
"rgb(0,0,0)"
boolean)
color)
"rgba(204, 204, 204, 0.5)"
boolean)
true
string)
object)
enumerated:
"-"
|
"linear"
|
"log"
|
"date"
|
"category"
)
"-"
enumerated:
true
|
false
|
"reversed"
)
true
enumerated:
"normal"
|
"tozero"
|
"nonnegative"
)
"normal"
array)
boolean)
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
enumerated:
true
|
"ticks"
|
false
|
"all"
|
"allticks"
)
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
string)
""
string)
""
boolean)
color)
"#444"
number greater than or equal to 0)
1
boolean)
color)
"rgb(204, 204, 204)"
number greater than or equal to 0)
1
boolean)
color)
"#444"
number)
1
object)
boolean)
true
boolean)
true
number greater than or equal to 0)
2
color)
"rgb(0,0,0)"
boolean)
color)
"rgba(204, 204, 204, 0.5)"
boolean)
true
string)
object)
enumerated:
"-"
|
"linear"
|
"log"
|
"date"
|
"category"
)
"-"
enumerated:
true
|
false
|
"reversed"
)
true
enumerated:
"normal"
|
"tozero"
|
"nonnegative"
)
"normal"
array)
boolean)
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
enumerated:
true
|
"ticks"
|
false
|
"all"
|
"allticks"
)
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
string)
""
string)
""
boolean)
color)
"#444"
number greater than or equal to 0)
1
boolean)
color)
"rgb(204, 204, 204)"
number greater than or equal to 0)
1
boolean)
color)
"#444"
number)
1
object)
object)
enumerated:
"110"
|
"50"
)
"110"
enumerated:
"world"
|
"usa"
|
"europe"
|
"asia"
|
"africa"
|
"north america"
|
"south america"
)
"world"
object)
enumerated:
"equirectangular"
|
"mercator"
|
"orthographic"
|
"natural earth"
|
"kavrayskiy7"
|
"miller"
|
"robinson"
|
"eckert4"
|
"azimuthal equal area"
|
"azimuthal equidistant"
|
"conic equal area"
|
"conic conformal"
|
"conic equidistant"
|
"gnomonic"
|
"stereographic"
|
"mollweide"
|
"hammer"
|
"transverse mercator"
|
"albers usa"
)
object)
array)
number between or equal to 0 and 10)
1
boolean)
color)
"#444"
number greater than or equal to 0)
1
boolean)
color)
"#F0DC82"
boolean)
color)
"#3399FF"
boolean)
color)
"#3399FF"
boolean)
color)
"#3399FF"
number greater than or equal to 0)
1
boolean)
color)
"#444"
number greater than or equal to 0)
1
boolean)
color)
"#444"
number greater than or equal to 0)
1
boolean)
color)
"#444"
number greater than or equal to 0)
1
color)
"#fff"
object)
array)
boolean)
number)
number)
color)
"#eee"
number greater than or equal to 0)
1
object)
array)
boolean)
number)
number)
color)
"#eee"
number greater than or equal to 0)
1
object)
color)
color)
"#444"
number greater than or equal to 0)
0
object)
flaglist string)
"reversed", "grouped" joined with a "+"
OR "normal".
"reversed", "grouped", "reversed+grouped", "normal"
number greater than or equal to 0)
10
number between or equal to -2 and 3)
1.02
enumerated:
"auto"
|
"left"
|
"center"
|
"right"
)
"left"
number between or equal to -2 and 3)
1
enumerated:
"auto"
|
"top"
|
"middle"
|
"bottom"
)
"auto"
array of objects)
string)
angle)
0
object)
number between or equal to 0 and 1)
1
enumerated:
"left"
|
"center"
|
"right"
)
"center"
color)
"rgba(0,0,0,0)"
color)
"rgba(0,0,0,0)"
number greater than or equal to 0)
1
number greater than or equal to 0)
1
boolean)
true
color)
integer between or equal to 0 and 8)
1
number greater than or equal to 0.3)
1
number greater than or equal to 0.1)
number)
-10
number)
-30
enumerated:
"paper"
|
"/^x([2-9]|[1-9][0-9]+)?$/"
)
number)
enumerated:
"auto"
|
"left"
|
"center"
|
"right"
)
"auto"
enumerated:
"paper"
|
"/^y([2-9]|[1-9][0-9]+)?$/"
)
number)
enumerated:
"auto"
|
"top"
|
"middle"
|
"bottom"
)
"auto"
array of objects)
number between or equal to 0 and 1)
1
object)
color)
"rgba(0,0,0,0)"
enumerated:
"circle"
|
"rect"
|
"path"
|
"line"
)
enumerated:
"paper"
|
"/^x([2-9]|[1-9][0-9]+)?$/"
)
number or categorical coordinate string)
number or categorical coordinate string)
enumerated:
"paper"
|
"/^y([2-9]|[1-9][0-9]+)?$/"
)
number or categorical coordinate string)
number or categorical coordinate string)
string)
object)
array)
array)
[0, 1]
number)
boolean)
boolean)
enumerated:
"horizontal"
|
"vertical"
)
number greater than or equal to 0)
color)
string)
number)
boolean)
object)
array)
array)
[0, 1]
boolean)
boolean)
enumerated:
"horizontal"
|
"vertical"
)
number greater than or equal to 0)
color)
string)
number)
boolean)
enumerated:
"clockwise"
|
"counterclockwise"
)
angle)
scatter trace is an object with the key "type" equal to "scatter" (i.e. {"type": "scatter"}) and any of the keys listed below.
"scatter")
enumerated:
true
|
false
|
"legendonly"
)
true
boolean)
true
string)
""
number between or equal to 0 and 1)
1
string)
string)
""
flaglist string)
"x", "y", "z", "text", "name" joined with a "+"
OR "all" or "none".
"x", "y", "x+y", "x+y+z", "all"
"all"
object)
string)
number greater than or equal to 0)
data array)
number or categorical coordinate string)
0
number)
1
data array)
number or categorical coordinate string)
0
number)
1
string)
""
flaglist string)
"lines", "markers", "text" joined with a "+"
OR "none".
"lines", "markers", "lines+markers", "lines+markers+text", "none"
object)
color)
number greater than or equal to 0)
2
enumerated:
"linear"
|
"spline"
|
"hv"
|
"vh"
|
"hvh"
|
"vhv"
)
"linear"
number between or equal to 0 and 1.3)
1
string)
"solid"
boolean)
enumerated:
"none"
|
"tozeroy"
|
"tozerox"
|
"tonexty"
|
"tonextx"
)
"none"
color)
object)
enumerated:
"0"
|
"circle"
|
"100"
|
"circle-open"
|
"200"
|
"circle-dot"
|
"300"
|
"circle-open-dot"
|
"1"
|
"square"
|
"101"
|
"square-open"
|
"201"
|
"square-dot"
|
"301"
|
"square-open-dot"
|
"2"
|
"diamond"
|
"102"
|
"diamond-open"
|
"202"
|
"diamond-dot"
|
"302"
|
"diamond-open-dot"
|
"3"
|
"cross"
|
"103"
|
"cross-open"
|
"203"
|
"cross-dot"
|
"303"
|
"cross-open-dot"
|
"4"
|
"x"
|
"104"
|
"x-open"
|
"204"
|
"x-dot"
|
"304"
|
"x-open-dot"
|
"5"
|
"triangle-up"
|
"105"
|
"triangle-up-open"
|
"205"
|
"triangle-up-dot"
|
"305"
|
"triangle-up-open-dot"
|
"6"
|
"triangle-down"
|
"106"
|
"triangle-down-open"
|
"206"
|
"triangle-down-dot"
|
"306"
|
"triangle-down-open-dot"
|
"7"
|
"triangle-left"
|
"107"
|
"triangle-left-open"
|
"207"
|
"triangle-left-dot"
|
"307"
|
"triangle-left-open-dot"
|
"8"
|
"triangle-right"
|
"108"
|
"triangle-right-open"
|
"208"
|
"triangle-right-dot"
|
"308"
|
"triangle-right-open-dot"
|
"9"
|
"triangle-ne"
|
"109"
|
"triangle-ne-open"
|
"209"
|
"triangle-ne-dot"
|
"309"
|
"triangle-ne-open-dot"
|
"10"
|
"triangle-se"
|
"110"
|
"triangle-se-open"
|
"210"
|
"triangle-se-dot"
|
"310"
|
"triangle-se-open-dot"
|
"11"
|
"triangle-sw"
|
"111"
|
"triangle-sw-open"
|
"211"
|
"triangle-sw-dot"
|
"311"
|
"triangle-sw-open-dot"
|
"12"
|
"triangle-nw"
|
"112"
|
"triangle-nw-open"
|
"212"
|
"triangle-nw-dot"
|
"312"
|
"triangle-nw-open-dot"
|
"13"
|
"pentagon"
|
"113"
|
"pentagon-open"
|
"213"
|
"pentagon-dot"
|
"313"
|
"pentagon-open-dot"
|
"14"
|
"hexagon"
|
"114"
|
"hexagon-open"
|
"214"
|
"hexagon-dot"
|
"314"
|
"hexagon-open-dot"
|
"15"
|
"hexagon2"
|
"115"
|
"hexagon2-open"
|
"215"
|
"hexagon2-dot"
|
"315"
|
"hexagon2-open-dot"
|
"16"
|
"octagon"
|
"116"
|
"octagon-open"
|
"216"
|
"octagon-dot"
|
"316"
|
"octagon-open-dot"
|
"17"
|
"star"
|
"117"
|
"star-open"
|
"217"
|
"star-dot"
|
"317"
|
"star-open-dot"
|
"18"
|
"hexagram"
|
"118"
|
"hexagram-open"
|
"218"
|
"hexagram-dot"
|
"318"
|
"hexagram-open-dot"
|
"19"
|
"star-triangle-up"
|
"119"
|
"star-triangle-up-open"
|
"219"
|
"star-triangle-up-dot"
|
"319"
|
"star-triangle-up-open-dot"
|
"20"
|
"star-triangle-down"
|
"120"
|
"star-triangle-down-open"
|
"220"
|
"star-triangle-down-dot"
|
"320"
|
"star-triangle-down-open-dot"
|
"21"
|
"star-square"
|
"121"
|
"star-square-open"
|
"221"
|
"star-square-dot"
|
"321"
|
"star-square-open-dot"
|
"22"
|
"star-diamond"
|
"122"
|
"star-diamond-open"
|
"222"
|
"star-diamond-dot"
|
"322"
|
"star-diamond-open-dot"
|
"23"
|
"diamond-tall"
|
"123"
|
"diamond-tall-open"
|
"223"
|
"diamond-tall-dot"
|
"323"
|
"diamond-tall-open-dot"
|
"24"
|
"diamond-wide"
|
"124"
|
"diamond-wide-open"
|
"224"
|
"diamond-wide-dot"
|
"324"
|
"diamond-wide-open-dot"
|
"25"
|
"hourglass"
|
"125"
|
"hourglass-open"
|
"26"
|
"bowtie"
|
"126"
|
"bowtie-open"
|
"27"
|
"circle-cross"
|
"127"
|
"circle-cross-open"
|
"28"
|
"circle-x"
|
"128"
|
"circle-x-open"
|
"29"
|
"square-cross"
|
"129"
|
"square-cross-open"
|
"30"
|
"square-x"
|
"130"
|
"square-x-open"
|
"31"
|
"diamond-cross"
|
"131"
|
"diamond-cross-open"
|
"32"
|
"diamond-x"
|
"132"
|
"diamond-x-open"
|
"33"
|
"cross-thin"
|
"133"
|
"cross-thin-open"
|
"34"
|
"x-thin"
|
"134"
|
"x-thin-open"
|
"35"
|
"asterisk"
|
"135"
|
"asterisk-open"
|
"36"
|
"hash"
|
"136"
|
"hash-open"
|
"236"
|
"hash-dot"
|
"336"
|
"hash-open-dot"
|
"37"
|
"y-up"
|
"137"
|
"y-up-open"
|
"38"
|
"y-down"
|
"138"
|
"y-down-open"
|
"39"
|
"y-left"
|
"139"
|
"y-left-open"
|
"40"
|
"y-right"
|
"140"
|
"y-right-open"
|
"41"
|
"line-ew"
|
"141"
|
"line-ew-open"
|
"42"
|
"line-ns"
|
"142"
|
"line-ns-open"
|
"43"
|
"line-ne"
|
"143"
|
"line-ne-open"
|
"44"
|
"line-nw"
|
"144"
|
"line-nw-open"
)
"circle"
number between or equal to 0 and 1)
number greater than or equal to 0)
6
color)
number greater than or equal to 0)
0
number)
1
number greater than or equal to 0)
0
enumerated:
"diameter"
|
"area"
)
"diameter"
colorscale)
boolean)
true
number)
number)
boolean)
true
boolean)
boolean)
object)
color)
number greater than or equal to 0)
colorscale)
boolean)
true
number)
number)
boolean)
true
boolean)
object)
enumerated:
"fraction"
|
"pixels"
)
"pixels"
number greater than or equal to 0)
30
enumerated:
"fraction"
|
"pixels"
)
"fraction"
number greater than or equal to 0)
1
number)
1.02
enumerated:
"left"
|
"center"
|
"right"
)
"left"
number greater than or equal to 0)
10
number)
0.5
enumerated:
"top"
|
"middle"
|
"bottom"
)
"middle"
number greater than or equal to 0)
10
color)
"#444"
number greater than or equal to 0)
1
color)
"#444"
number greater than or equal to 0)
0
color)
"rgba(0,0,0,0)"
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
""
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
"Click to enter colorscale title"
object)
enumerated:
"right"
|
"top"
|
"bottom"
)
"top"
enumerated:
"top left"
|
"top center"
|
"top right"
|
"middle left"
|
"middle center"
|
"middle right"
|
"bottom left"
|
"bottom center"
|
"bottom right"
)
"middle center"
object)
data array)
data array)
object)
boolean)
enumerated:
"percent"
|
"constant"
|
"sqrt"
|
"data"
)
boolean)
data array)
data array)
number greater than or equal to 0)
10
number greater than or equal to 0)
10
integer greater than or equal to 0)
0
integer greater than or equal to 0)
0
boolean)
boolean)
color)
number greater than or equal to 0)
2
number greater than or equal to 0)
object)
boolean)
enumerated:
"percent"
|
"constant"
|
"sqrt"
|
"data"
)
boolean)
data array)
data array)
number greater than or equal to 0)
10
number greater than or equal to 0)
10
integer greater than or equal to 0)
0
integer greater than or equal to 0)
0
boolean)
boolean)
color)
number greater than or equal to 0)
2
number greater than or equal to 0)
axisid)
x
axisid)
y
bar trace is an object with the key "type" equal to "bar" (i.e. {"type": "bar"}) and any of the keys listed below.
"bar")
enumerated:
true
|
false
|
"legendonly"
)
true
boolean)
true
string)
""
number between or equal to 0 and 1)
1
string)
string)
""
flaglist string)
"x", "y", "z", "text", "name" joined with a "+"
OR "all" or "none".
"x", "y", "x+y", "x+y+z", "all"
"all"
object)
string)
number greater than or equal to 0)
data array)
number or categorical coordinate string)
0
number)
1
data array)
number or categorical coordinate string)
0
number)
1
string)
""
enumerated:
"v"
|
"h"
)
object)
color)
colorscale)
boolean)
true
number)
number)
boolean)
true
boolean)
boolean)
object)
color)
colorscale)
boolean)
true
number)
number)
number greater than or equal to 0)
boolean)
true
boolean)
object)
enumerated:
"fraction"
|
"pixels"
)
"pixels"
number greater than or equal to 0)
30
enumerated:
"fraction"
|
"pixels"
)
"fraction"
number greater than or equal to 0)
1
number)
1.02
enumerated:
"left"
|
"center"
|
"right"
)
"left"
number greater than or equal to 0)
10
number)
0.5
enumerated:
"top"
|
"middle"
|
"bottom"
)
"middle"
number greater than or equal to 0)
10
color)
"#444"
number greater than or equal to 0)
1
color)
"#444"
number greater than or equal to 0)
0
color)
"rgba(0,0,0,0)"
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
""
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
"Click to enter colorscale title"
object)
enumerated:
"right"
|
"top"
|
"bottom"
)
"top"
data array)
data array)
object)
boolean)
enumerated:
"percent"
|
"constant"
|
"sqrt"
|
"data"
)
boolean)
data array)
data array)
number greater than or equal to 0)
10
number greater than or equal to 0)
10
integer greater than or equal to 0)
0
integer greater than or equal to 0)
0
boolean)
boolean)
color)
number greater than or equal to 0)
2
number greater than or equal to 0)
object)
boolean)
enumerated:
"percent"
|
"constant"
|
"sqrt"
|
"data"
)
boolean)
data array)
data array)
number greater than or equal to 0)
10
number greater than or equal to 0)
10
integer greater than or equal to 0)
0
integer greater than or equal to 0)
0
boolean)
boolean)
color)
number greater than or equal to 0)
2
number greater than or equal to 0)
axisid)
x
axisid)
y
box trace is an object with the key "type" equal to "box" (i.e. {"type": "box"}) and any of the keys listed below.
"box")
enumerated:
true
|
false
|
"legendonly"
)
true
boolean)
true
string)
""
number between or equal to 0 and 1)
1
string)
string)
""
flaglist string)
"x", "y", "z", "text", "name" joined with a "+"
OR "all" or "none".
"x", "y", "x+y", "x+y+z", "all"
"all"
object)
string)
number greater than or equal to 0)
data array)
data array)
number or categorical coordinate string)
number or categorical coordinate string)
number between or equal to 0 and 1)
0.5
enumerated:
"all"
|
"outliers"
|
"suspectedoutliers"
|
false
)
"outliers"
enumerated:
true
|
"sd"
|
false
)
number between or equal to 0 and 1)
number between or equal to -2 and 2)
enumerated:
"v"
|
"h"
)
object)
color)
"rgba(0,0,0,0)"
enumerated:
"0"
|
"circle"
|
"100"
|
"circle-open"
|
"200"
|
"circle-dot"
|
"300"
|
"circle-open-dot"
|
"1"
|
"square"
|
"101"
|
"square-open"
|
"201"
|
"square-dot"
|
"301"
|
"square-open-dot"
|
"2"
|
"diamond"
|
"102"
|
"diamond-open"
|
"202"
|
"diamond-dot"
|
"302"
|
"diamond-open-dot"
|
"3"
|
"cross"
|
"103"
|
"cross-open"
|
"203"
|
"cross-dot"
|
"303"
|
"cross-open-dot"
|
"4"
|
"x"
|
"104"
|
"x-open"
|
"204"
|
"x-dot"
|
"304"
|
"x-open-dot"
|
"5"
|
"triangle-up"
|
"105"
|
"triangle-up-open"
|
"205"
|
"triangle-up-dot"
|
"305"
|
"triangle-up-open-dot"
|
"6"
|
"triangle-down"
|
"106"
|
"triangle-down-open"
|
"206"
|
"triangle-down-dot"
|
"306"
|
"triangle-down-open-dot"
|
"7"
|
"triangle-left"
|
"107"
|
"triangle-left-open"
|
"207"
|
"triangle-left-dot"
|
"307"
|
"triangle-left-open-dot"
|
"8"
|
"triangle-right"
|
"108"
|
"triangle-right-open"
|
"208"
|
"triangle-right-dot"
|
"308"
|
"triangle-right-open-dot"
|
"9"
|
"triangle-ne"
|
"109"
|
"triangle-ne-open"
|
"209"
|
"triangle-ne-dot"
|
"309"
|
"triangle-ne-open-dot"
|
"10"
|
"triangle-se"
|
"110"
|
"triangle-se-open"
|
"210"
|
"triangle-se-dot"
|
"310"
|
"triangle-se-open-dot"
|
"11"
|
"triangle-sw"
|
"111"
|
"triangle-sw-open"
|
"211"
|
"triangle-sw-dot"
|
"311"
|
"triangle-sw-open-dot"
|
"12"
|
"triangle-nw"
|
"112"
|
"triangle-nw-open"
|
"212"
|
"triangle-nw-dot"
|
"312"
|
"triangle-nw-open-dot"
|
"13"
|
"pentagon"
|
"113"
|
"pentagon-open"
|
"213"
|
"pentagon-dot"
|
"313"
|
"pentagon-open-dot"
|
"14"
|
"hexagon"
|
"114"
|
"hexagon-open"
|
"214"
|
"hexagon-dot"
|
"314"
|
"hexagon-open-dot"
|
"15"
|
"hexagon2"
|
"115"
|
"hexagon2-open"
|
"215"
|
"hexagon2-dot"
|
"315"
|
"hexagon2-open-dot"
|
"16"
|
"octagon"
|
"116"
|
"octagon-open"
|
"216"
|
"octagon-dot"
|
"316"
|
"octagon-open-dot"
|
"17"
|
"star"
|
"117"
|
"star-open"
|
"217"
|
"star-dot"
|
"317"
|
"star-open-dot"
|
"18"
|
"hexagram"
|
"118"
|
"hexagram-open"
|
"218"
|
"hexagram-dot"
|
"318"
|
"hexagram-open-dot"
|
"19"
|
"star-triangle-up"
|
"119"
|
"star-triangle-up-open"
|
"219"
|
"star-triangle-up-dot"
|
"319"
|
"star-triangle-up-open-dot"
|
"20"
|
"star-triangle-down"
|
"120"
|
"star-triangle-down-open"
|
"220"
|
"star-triangle-down-dot"
|
"320"
|
"star-triangle-down-open-dot"
|
"21"
|
"star-square"
|
"121"
|
"star-square-open"
|
"221"
|
"star-square-dot"
|
"321"
|
"star-square-open-dot"
|
"22"
|
"star-diamond"
|
"122"
|
"star-diamond-open"
|
"222"
|
"star-diamond-dot"
|
"322"
|
"star-diamond-open-dot"
|
"23"
|
"diamond-tall"
|
"123"
|
"diamond-tall-open"
|
"223"
|
"diamond-tall-dot"
|
"323"
|
"diamond-tall-open-dot"
|
"24"
|
"diamond-wide"
|
"124"
|
"diamond-wide-open"
|
"224"
|
"diamond-wide-dot"
|
"324"
|
"diamond-wide-open-dot"
|
"25"
|
"hourglass"
|
"125"
|
"hourglass-open"
|
"26"
|
"bowtie"
|
"126"
|
"bowtie-open"
|
"27"
|
"circle-cross"
|
"127"
|
"circle-cross-open"
|
"28"
|
"circle-x"
|
"128"
|
"circle-x-open"
|
"29"
|
"square-cross"
|
"129"
|
"square-cross-open"
|
"30"
|
"square-x"
|
"130"
|
"square-x-open"
|
"31"
|
"diamond-cross"
|
"131"
|
"diamond-cross-open"
|
"32"
|
"diamond-x"
|
"132"
|
"diamond-x-open"
|
"33"
|
"cross-thin"
|
"133"
|
"cross-thin-open"
|
"34"
|
"x-thin"
|
"134"
|
"x-thin-open"
|
"35"
|
"asterisk"
|
"135"
|
"asterisk-open"
|
"36"
|
"hash"
|
"136"
|
"hash-open"
|
"236"
|
"hash-dot"
|
"336"
|
"hash-open-dot"
|
"37"
|
"y-up"
|
"137"
|
"y-up-open"
|
"38"
|
"y-down"
|
"138"
|
"y-down-open"
|
"39"
|
"y-left"
|
"139"
|
"y-left-open"
|
"40"
|
"y-right"
|
"140"
|
"y-right-open"
|
"41"
|
"line-ew"
|
"141"
|
"line-ew-open"
|
"42"
|
"line-ns"
|
"142"
|
"line-ns-open"
|
"43"
|
"line-ne"
|
"143"
|
"line-ne-open"
|
"44"
|
"line-nw"
|
"144"
|
"line-nw-open"
)
"circle"
number between or equal to 0 and 1)
1
number greater than or equal to 0)
6
color)
object)
color)
"#444"
number greater than or equal to 0)
0
color)
number greater than or equal to 0)
1
object)
color)
axisid)
x
axisid)
y
heatmap trace is an object with the key "type" equal to "heatmap" (i.e. {"type": "heatmap"}) and any of the keys listed below.
"heatmap")
enumerated:
true
|
false
|
"legendonly"
)
true
boolean)
true
string)
""
number between or equal to 0 and 1)
1
string)
string)
""
flaglist string)
"x", "y", "z", "text", "name" joined with a "+"
OR "all" or "none".
"x", "y", "x+y", "x+y+z", "all"
"all"
object)
string)
number greater than or equal to 0)
data array)
data array)
number or categorical coordinate string)
0
number)
1
data array)
number or categorical coordinate string)
0
number)
1
data array)
boolean)
enumerated:
"array"
|
"scaled"
)
enumerated:
"array"
|
"scaled"
)
boolean)
true
number)
number)
colorscale)
boolean)
boolean)
boolean)
true
enumerated:
"fast"
|
"best"
|
false
)
boolean)
object)
enumerated:
"fraction"
|
"pixels"
)
"pixels"
number greater than or equal to 0)
30
enumerated:
"fraction"
|
"pixels"
)
"fraction"
number greater than or equal to 0)
1
number)
1.02
enumerated:
"left"
|
"center"
|
"right"
)
"left"
number greater than or equal to 0)
10
number)
0.5
enumerated:
"top"
|
"middle"
|
"bottom"
)
"middle"
number greater than or equal to 0)
10
color)
"#444"
number greater than or equal to 0)
1
color)
"#444"
number greater than or equal to 0)
0
color)
"rgba(0,0,0,0)"
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
""
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
"Click to enter colorscale title"
object)
enumerated:
"right"
|
"top"
|
"bottom"
)
"top"
axisid)
x
axisid)
y
histogram trace is an object with the key "type" equal to "histogram" (i.e. {"type": "histogram"}) and any of the keys listed below.
"histogram")
enumerated:
true
|
false
|
"legendonly"
)
true
boolean)
true
string)
""
number between or equal to 0 and 1)
1
string)
string)
""
flaglist string)
"x", "y", "z", "text", "name" joined with a "+"
OR "all" or "none".
"x", "y", "x+y", "x+y+z", "all"
"all"
object)
string)
number greater than or equal to 0)
data array)
number or categorical coordinate string)
0
number)
1
data array)
number or categorical coordinate string)
0
number)
1
string)
""
enumerated:
"v"
|
"h"
)
object)
data array)
colorscale)
boolean)
true
number)
number)
boolean)
true
boolean)
boolean)
object)
color)
colorscale)
boolean)
true
number)
number)
number greater than or equal to 0)
boolean)
true
boolean)
object)
enumerated:
"fraction"
|
"pixels"
)
"pixels"
number greater than or equal to 0)
30
enumerated:
"fraction"
|
"pixels"
)
"fraction"
number greater than or equal to 0)
1
number)
1.02
enumerated:
"left"
|
"center"
|
"right"
)
"left"
number greater than or equal to 0)
10
number)
0.5
enumerated:
"top"
|
"middle"
|
"bottom"
)
"middle"
number greater than or equal to 0)
10
color)
"#444"
number greater than or equal to 0)
1
color)
"#444"
number greater than or equal to 0)
0
color)
"rgba(0,0,0,0)"
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
""
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
"Click to enter colorscale title"
object)
enumerated:
"right"
|
"top"
|
"bottom"
)
"top"
data array)
data array)
data array)
enumerated:
"count"
|
"sum"
|
"avg"
|
"min"
|
"max"
)
"count"
enumerated:
""
|
"percent"
|
"probability"
|
"density"
|
"probability density"
)
""
boolean)
true
integer greater than or equal to 0)
0
object)
boolean)
true
integer greater than or equal to 0)
0
object)
object)
boolean)
enumerated:
"percent"
|
"constant"
|
"sqrt"
|
"data"
)
boolean)
data array)
data array)
number greater than or equal to 0)
10
number greater than or equal to 0)
10
integer greater than or equal to 0)
0
integer greater than or equal to 0)
0
boolean)
boolean)
color)
number greater than or equal to 0)
2
number greater than or equal to 0)
object)
boolean)
enumerated:
"percent"
|
"constant"
|
"sqrt"
|
"data"
)
boolean)
data array)
data array)
number greater than or equal to 0)
10
number greater than or equal to 0)
10
integer greater than or equal to 0)
0
integer greater than or equal to 0)
0
boolean)
boolean)
color)
number greater than or equal to 0)
2
number greater than or equal to 0)
axisid)
x
axisid)
y
histogram2d trace is an object with the key "type" equal to "histogram2d" (i.e. {"type": "histogram2d"}) and any of the keys listed below.
"histogram2d")
enumerated:
true
|
false
|
"legendonly"
)
true
boolean)
true
string)
""
number between or equal to 0 and 1)
1
string)
string)
""
flaglist string)
"x", "y", "z", "text", "name" joined with a "+"
OR "all" or "none".
"x", "y", "x+y", "x+y+z", "all"
"all"
object)
string)
number greater than or equal to 0)
data array)
data array)
number or categorical coordinate string)
0
number)
1
data array)
number or categorical coordinate string)
0
number)
1
data array)
boolean)
enumerated:
"array"
|
"scaled"
)
enumerated:
"array"
|
"scaled"
)
boolean)
true
number)
number)
colorscale)
boolean)
boolean)
boolean)
true
enumerated:
"fast"
|
"best"
|
false
)
boolean)
object)
enumerated:
"fraction"
|
"pixels"
)
"pixels"
number greater than or equal to 0)
30
enumerated:
"fraction"
|
"pixels"
)
"fraction"
number greater than or equal to 0)
1
number)
1.02
enumerated:
"left"
|
"center"
|
"right"
)
"left"
number greater than or equal to 0)
10
number)
0.5
enumerated:
"top"
|
"middle"
|
"bottom"
)
"middle"
number greater than or equal to 0)
10
color)
"#444"
number greater than or equal to 0)
1
color)
"#444"
number greater than or equal to 0)
0
color)
"rgba(0,0,0,0)"
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
""
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
"Click to enter colorscale title"
object)
enumerated:
"right"
|
"top"
|
"bottom"
)
"top"
object)
enumerated:
"v"
|
"h"
)
enumerated:
"count"
|
"sum"
|
"avg"
|
"min"
|
"max"
)
"count"
enumerated:
""
|
"percent"
|
"probability"
|
"density"
|
"probability density"
)
""
boolean)
true
integer greater than or equal to 0)
0
object)
boolean)
true
integer greater than or equal to 0)
0
object)
axisid)
x
axisid)
y
pie trace is an object with the key "type" equal to "pie" (i.e. {"type": "pie"}) and any of the keys listed below.
"pie")
enumerated:
true
|
false
|
"legendonly"
)
true
boolean)
true
string)
""
number between or equal to 0 and 1)
1
string)
string)
""
flaglist string)
"label", "text", "value", "percent", "name" joined with a "+"
OR "all" or "none".
"label", "text", "label+text", "label+text+value", "all"
"all"
object)
string)
number greater than or equal to 0)
data array)
number)
0
number)
1
object)
data array)
string)
""
flaglist string)
"label", "text", "value", "percent" joined with a "+"
OR "none".
"label", "text", "label+text", "label+text+value", "none"
enumerated:
"inside"
|
"outside"
|
"auto"
|
"none"
)
"auto"
object)
object)
object)
object)
number between or equal to 0 and 1)
0
boolean)
true
enumerated:
"clockwise"
|
"counterclockwise"
)
"counterclockwise"
number between or equal to -360 and 360)
0
number between or equal to 0 and 1)
0
contour trace is an object with the key "type" equal to "contour" (i.e. {"type": "contour"}) and any of the keys listed below.
"contour")
enumerated:
true
|
false
|
"legendonly"
)
true
boolean)
true
string)
""
number between or equal to 0 and 1)
1
string)
string)
""
flaglist string)
"x", "y", "z", "text", "name" joined with a "+"
OR "all" or "none".
"x", "y", "x+y", "x+y+z", "all"
"all"
object)
string)
number greater than or equal to 0)
data array)
data array)
number or categorical coordinate string)
0
number)
1
data array)
number or categorical coordinate string)
0
number)
1
data array)
boolean)
enumerated:
"array"
|
"scaled"
)
enumerated:
"array"
|
"scaled"
)
boolean)
true
number)
number)
colorscale)
boolean)
boolean)
boolean)
true
enumerated:
"fast"
|
"best"
|
false
)
boolean)
object)
enumerated:
"fraction"
|
"pixels"
)
"pixels"
number greater than or equal to 0)
30
enumerated:
"fraction"
|
"pixels"
)
"fraction"
number greater than or equal to 0)
1
number)
1.02
enumerated:
"left"
|
"center"
|
"right"
)
"left"
number greater than or equal to 0)
10
number)
0.5
enumerated:
"top"
|
"middle"
|
"bottom"
)
"middle"
number greater than or equal to 0)
10
color)
"#444"
number greater than or equal to 0)
1
color)
"#444"
number greater than or equal to 0)
0
color)
"rgba(0,0,0,0)"
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
""
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
"Click to enter colorscale title"
object)
enumerated:
"right"
|
"top"
|
"bottom"
)
"top"
boolean)
true
integer)
0
object)
number)
number)
number)
enumerated:
"fill"
|
"heatmap"
|
"lines"
|
"none"
)
"fill"
boolean)
true
object)
color)
number greater than or equal to 0)
2
string)
"solid"
number between or equal to 0 and 1.3)
1
axisid)
x
axisid)
y
histogram2dcontour trace is an object with the key "type" equal to "histogram2dcontour" (i.e. {"type": "histogram2dcontour"}) and any of the keys listed below.
"histogram2dcontour")
enumerated:
true
|
false
|
"legendonly"
)
true
boolean)
true
string)
""
number between or equal to 0 and 1)
1
string)
string)
""
flaglist string)
"x", "y", "z", "text", "name" joined with a "+"
OR "all" or "none".
"x", "y", "x+y", "x+y+z", "all"
"all"
object)
string)
number greater than or equal to 0)
data array)
data array)
number or categorical coordinate string)
0
number)
1
data array)
number or categorical coordinate string)
0
number)
1
data array)
boolean)
enumerated:
"array"
|
"scaled"
)
enumerated:
"array"
|
"scaled"
)
boolean)
true
number)
number)
colorscale)
boolean)
boolean)
boolean)
true
enumerated:
"fast"
|
"best"
|
false
)
boolean)
object)
enumerated:
"fraction"
|
"pixels"
)
"pixels"
number greater than or equal to 0)
30
enumerated:
"fraction"
|
"pixels"
)
"fraction"
number greater than or equal to 0)
1
number)
1.02
enumerated:
"left"
|
"center"
|
"right"
)
"left"
number greater than or equal to 0)
10
number)
0.5
enumerated:
"top"
|
"middle"
|
"bottom"
)
"middle"
number greater than or equal to 0)
10
color)
"#444"
number greater than or equal to 0)
1
color)
"#444"
number greater than or equal to 0)
0
color)
"rgba(0,0,0,0)"
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
""
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
"Click to enter colorscale title"
object)
enumerated:
"right"
|
"top"
|
"bottom"
)
"top"
object)
enumerated:
"v"
|
"h"
)
enumerated:
"count"
|
"sum"
|
"avg"
|
"min"
|
"max"
)
"count"
enumerated:
""
|
"percent"
|
"probability"
|
"density"
|
"probability density"
)
""
boolean)
true
integer greater than or equal to 0)
0
object)
boolean)
true
integer greater than or equal to 0)
0
object)
boolean)
true
integer)
0
object)
number)
number)
number)
enumerated:
"fill"
|
"heatmap"
|
"lines"
|
"none"
)
"fill"
boolean)
true
object)
color)
number greater than or equal to 0)
2
string)
"solid"
number between or equal to 0 and 1.3)
1
axisid)
x
axisid)
y
scatter3d trace is an object with the key "type" equal to "scatter3d" (i.e. {"type": "scatter3d"}) and any of the keys listed below.
"scatter3d")
enumerated:
true
|
false
|
"legendonly"
)
true
boolean)
true
string)
""
number between or equal to 0 and 1)
1
string)
string)
""
flaglist string)
"x", "y", "z", "text", "name" joined with a "+"
OR "all" or "none".
"x", "y", "x+y", "x+y+z", "all"
"all"
object)
string)
number greater than or equal to 0)
data array)
data array)
data array)
string)
""
flaglist string)
"lines", "markers", "text" joined with a "+"
OR "none".
"lines", "markers", "lines+markers", "lines+markers+text", "none"
"lines+markers"
enumerated:
"-1"
|
"0"
|
"1"
|
"2"
)
"-1"
color)
object)
object)
boolean)
number between or equal to 0 and 1)
1
number between or equal to 0 and 10)
0.6666666666666666
object)
boolean)
number between or equal to 0 and 1)
1
number between or equal to 0 and 10)
0.6666666666666666
object)
boolean)
number between or equal to 0 and 1)
1
number between or equal to 0 and 10)
0.6666666666666666
object)
object)
color)
enumerated:
"circle"
|
"circle-open"
|
"square"
|
"square-open"
|
"diamond"
|
"diamond-open"
|
"cross"
|
"x"
)
"circle"
number greater than or equal to 0)
8
number)
1
number greater than or equal to 0)
0
enumerated:
"diameter"
|
"area"
)
"diameter"
number between or equal to 0 and 1)
colorscale)
boolean)
true
number)
number)
boolean)
true
boolean)
boolean)
object)
color)
number greater than or equal to 0)
colorscale)
boolean)
true
number)
number)
boolean)
true
boolean)
object)
enumerated:
"fraction"
|
"pixels"
)
"pixels"
number greater than or equal to 0)
30
enumerated:
"fraction"
|
"pixels"
)
"fraction"
number greater than or equal to 0)
1
number)
1.02
enumerated:
"left"
|
"center"
|
"right"
)
"left"
number greater than or equal to 0)
10
number)
0.5
enumerated:
"top"
|
"middle"
|
"bottom"
)
"middle"
number greater than or equal to 0)
10
color)
"#444"
number greater than or equal to 0)
1
color)
"#444"
number greater than or equal to 0)
0
color)
"rgba(0,0,0,0)"
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
""
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
"Click to enter colorscale title"
object)
enumerated:
"right"
|
"top"
|
"bottom"
)
"top"
enumerated:
"top left"
|
"top center"
|
"top right"
|
"middle left"
|
"middle center"
|
"middle right"
|
"bottom left"
|
"bottom center"
|
"bottom right"
)
"top center"
object)
object)
boolean)
enumerated:
"percent"
|
"constant"
|
"sqrt"
|
"data"
)
boolean)
data array)
data array)
number greater than or equal to 0)
10
number greater than or equal to 0)
10
integer greater than or equal to 0)
0
integer greater than or equal to 0)
0
boolean)
boolean)
color)
number greater than or equal to 0)
2
number greater than or equal to 0)
object)
boolean)
enumerated:
"percent"
|
"constant"
|
"sqrt"
|
"data"
)
boolean)
data array)
data array)
number greater than or equal to 0)
10
number greater than or equal to 0)
10
integer greater than or equal to 0)
0
integer greater than or equal to 0)
0
boolean)
boolean)
color)
number greater than or equal to 0)
2
number greater than or equal to 0)
object)
boolean)
enumerated:
"percent"
|
"constant"
|
"sqrt"
|
"data"
)
boolean)
data array)
data array)
number greater than or equal to 0)
10
number greater than or equal to 0)
10
integer greater than or equal to 0)
0
integer greater than or equal to 0)
0
boolean)
boolean)
color)
number greater than or equal to 0)
2
number greater than or equal to 0)
sceneid)
scene
surface trace is an object with the key "type" equal to "surface" (i.e. {"type": "surface"}) and any of the keys listed below.
"surface")
enumerated:
true
|
false
|
"legendonly"
)
true
boolean)
true
string)
""
number between or equal to 0 and 1)
1
string)
string)
""
flaglist string)
"x", "y", "z", "text", "name" joined with a "+"
OR "all" or "none".
"x", "y", "x+y", "x+y+z", "all"
"all"
object)
string)
number greater than or equal to 0)
data array)
data array)
data array)
data array)
boolean)
true
number)
number)
colorscale)
boolean)
boolean)
boolean)
true
object)
object)
boolean)
object)
color)
"#000"
boolean)
number between or equal to 1 and 16)
2
boolean)
color)
"#000"
number between or equal to 1 and 16)
2
object)
boolean)
object)
color)
"#000"
boolean)
number between or equal to 1 and 16)
2
boolean)
color)
"#000"
number between or equal to 1 and 16)
2
object)
boolean)
object)
color)
"#000"
boolean)
number between or equal to 1 and 16)
2
boolean)
color)
"#000"
number between or equal to 1 and 16)
2
boolean)
object)
object)
enumerated:
"fraction"
|
"pixels"
)
"pixels"
number greater than or equal to 0)
30
enumerated:
"fraction"
|
"pixels"
)
"fraction"
number greater than or equal to 0)
1
number)
1.02
enumerated:
"left"
|
"center"
|
"right"
)
"left"
number greater than or equal to 0)
10
number)
0.5
enumerated:
"top"
|
"middle"
|
"bottom"
)
"middle"
number greater than or equal to 0)
10
color)
"#444"
number greater than or equal to 0)
1
color)
"#444"
number greater than or equal to 0)
0
color)
"rgba(0,0,0,0)"
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
""
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
"Click to enter colorscale title"
object)
enumerated:
"right"
|
"top"
|
"bottom"
)
"top"
sceneid)
scene
mesh3d trace is an object with the key "type" equal to "mesh3d" (i.e. {"type": "mesh3d"}) and any of the keys listed below.
"mesh3d")
enumerated:
true
|
false
|
"legendonly"
)
true
boolean)
true
string)
""
number between or equal to 0 and 1)
1
string)
string)
""
flaglist string)
"x", "y", "z", "text", "name" joined with a "+"
OR "all" or "none".
"x", "y", "x+y", "x+y+z", "all"
"all"
object)
string)
number greater than or equal to 0)
data array)
data array)
data array)
data array)
data array)
data array)
enumerated:
"x"
|
"y"
|
"z"
)
"z"
number)
-1
data array)
color)
data array)
data array)
boolean)
object)
colorscale)
boolean)
boolean)
true
object)
object)
enumerated:
"fraction"
|
"pixels"
)
"pixels"
number greater than or equal to 0)
30
enumerated:
"fraction"
|
"pixels"
)
"fraction"
number greater than or equal to 0)
1
number)
1.02
enumerated:
"left"
|
"center"
|
"right"
)
"left"
number greater than or equal to 0)
10
number)
0.5
enumerated:
"top"
|
"middle"
|
"bottom"
)
"middle"
number greater than or equal to 0)
10
color)
"#444"
number greater than or equal to 0)
1
color)
"#444"
number greater than or equal to 0)
0
color)
"rgba(0,0,0,0)"
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
""
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
"Click to enter colorscale title"
object)
enumerated:
"right"
|
"top"
|
"bottom"
)
"top"
sceneid)
scene
scattergeo trace is an object with the key "type" equal to "scattergeo" (i.e. {"type": "scattergeo"}) and any of the keys listed below.
"scattergeo")
enumerated:
true
|
false
|
"legendonly"
)
true
boolean)
true
string)
""
number between or equal to 0 and 1)
1
string)
string)
""
flaglist string)
"lon", "lat", "location", "text", "name" joined with a "+"
OR "all" or "none".
"lon", "lat", "lon+lat", "lon+lat+location", "all"
"all"
object)
string)
number greater than or equal to 0)
data array)
data array)
data array)
enumerated:
"ISO-3"
|
"USA-states"
|
"country names"
)
"ISO-3"
flaglist string)
"lines", "markers", "text" joined with a "+"
OR "none".
"lines", "markers", "lines+markers", "lines+markers+text", "none"
"markers"
string)
""
object)
object)
enumerated:
"0"
|
"circle"
|
"100"
|
"circle-open"
|
"200"
|
"circle-dot"
|
"300"
|
"circle-open-dot"
|
"1"
|
"square"
|
"101"
|
"square-open"
|
"201"
|
"square-dot"
|
"301"
|
"square-open-dot"
|
"2"
|
"diamond"
|
"102"
|
"diamond-open"
|
"202"
|
"diamond-dot"
|
"302"
|
"diamond-open-dot"
|
"3"
|
"cross"
|
"103"
|
"cross-open"
|
"203"
|
"cross-dot"
|
"303"
|
"cross-open-dot"
|
"4"
|
"x"
|
"104"
|
"x-open"
|
"204"
|
"x-dot"
|
"304"
|
"x-open-dot"
|
"5"
|
"triangle-up"
|
"105"
|
"triangle-up-open"
|
"205"
|
"triangle-up-dot"
|
"305"
|
"triangle-up-open-dot"
|
"6"
|
"triangle-down"
|
"106"
|
"triangle-down-open"
|
"206"
|
"triangle-down-dot"
|
"306"
|
"triangle-down-open-dot"
|
"7"
|
"triangle-left"
|
"107"
|
"triangle-left-open"
|
"207"
|
"triangle-left-dot"
|
"307"
|
"triangle-left-open-dot"
|
"8"
|
"triangle-right"
|
"108"
|
"triangle-right-open"
|
"208"
|
"triangle-right-dot"
|
"308"
|
"triangle-right-open-dot"
|
"9"
|
"triangle-ne"
|
"109"
|
"triangle-ne-open"
|
"209"
|
"triangle-ne-dot"
|
"309"
|
"triangle-ne-open-dot"
|
"10"
|
"triangle-se"
|
"110"
|
"triangle-se-open"
|
"210"
|
"triangle-se-dot"
|
"310"
|
"triangle-se-open-dot"
|
"11"
|
"triangle-sw"
|
"111"
|
"triangle-sw-open"
|
"211"
|
"triangle-sw-dot"
|
"311"
|
"triangle-sw-open-dot"
|
"12"
|
"triangle-nw"
|
"112"
|
"triangle-nw-open"
|
"212"
|
"triangle-nw-dot"
|
"312"
|
"triangle-nw-open-dot"
|
"13"
|
"pentagon"
|
"113"
|
"pentagon-open"
|
"213"
|
"pentagon-dot"
|
"313"
|
"pentagon-open-dot"
|
"14"
|
"hexagon"
|
"114"
|
"hexagon-open"
|
"214"
|
"hexagon-dot"
|
"314"
|
"hexagon-open-dot"
|
"15"
|
"hexagon2"
|
"115"
|
"hexagon2-open"
|
"215"
|
"hexagon2-dot"
|
"315"
|
"hexagon2-open-dot"
|
"16"
|
"octagon"
|
"116"
|
"octagon-open"
|
"216"
|
"octagon-dot"
|
"316"
|
"octagon-open-dot"
|
"17"
|
"star"
|
"117"
|
"star-open"
|
"217"
|
"star-dot"
|
"317"
|
"star-open-dot"
|
"18"
|
"hexagram"
|
"118"
|
"hexagram-open"
|
"218"
|
"hexagram-dot"
|
"318"
|
"hexagram-open-dot"
|
"19"
|
"star-triangle-up"
|
"119"
|
"star-triangle-up-open"
|
"219"
|
"star-triangle-up-dot"
|
"319"
|
"star-triangle-up-open-dot"
|
"20"
|
"star-triangle-down"
|
"120"
|
"star-triangle-down-open"
|
"220"
|
"star-triangle-down-dot"
|
"320"
|
"star-triangle-down-open-dot"
|
"21"
|
"star-square"
|
"121"
|
"star-square-open"
|
"221"
|
"star-square-dot"
|
"321"
|
"star-square-open-dot"
|
"22"
|
"star-diamond"
|
"122"
|
"star-diamond-open"
|
"222"
|
"star-diamond-dot"
|
"322"
|
"star-diamond-open-dot"
|
"23"
|
"diamond-tall"
|
"123"
|
"diamond-tall-open"
|
"223"
|
"diamond-tall-dot"
|
"323"
|
"diamond-tall-open-dot"
|
"24"
|
"diamond-wide"
|
"124"
|
"diamond-wide-open"
|
"224"
|
"diamond-wide-dot"
|
"324"
|
"diamond-wide-open-dot"
|
"25"
|
"hourglass"
|
"125"
|
"hourglass-open"
|
"26"
|
"bowtie"
|
"126"
|
"bowtie-open"
|
"27"
|
"circle-cross"
|
"127"
|
"circle-cross-open"
|
"28"
|
"circle-x"
|
"128"
|
"circle-x-open"
|
"29"
|
"square-cross"
|
"129"
|
"square-cross-open"
|
"30"
|
"square-x"
|
"130"
|
"square-x-open"
|
"31"
|
"diamond-cross"
|
"131"
|
"diamond-cross-open"
|
"32"
|
"diamond-x"
|
"132"
|
"diamond-x-open"
|
"33"
|
"cross-thin"
|
"133"
|
"cross-thin-open"
|
"34"
|
"x-thin"
|
"134"
|
"x-thin-open"
|
"35"
|
"asterisk"
|
"135"
|
"asterisk-open"
|
"36"
|
"hash"
|
"136"
|
"hash-open"
|
"236"
|
"hash-dot"
|
"336"
|
"hash-open-dot"
|
"37"
|
"y-up"
|
"137"
|
"y-up-open"
|
"38"
|
"y-down"
|
"138"
|
"y-down-open"
|
"39"
|
"y-left"
|
"139"
|
"y-left-open"
|
"40"
|
"y-right"
|
"140"
|
"y-right-open"
|
"41"
|
"line-ew"
|
"141"
|
"line-ew-open"
|
"42"
|
"line-ns"
|
"142"
|
"line-ns-open"
|
"43"
|
"line-ne"
|
"143"
|
"line-ne-open"
|
"44"
|
"line-nw"
|
"144"
|
"line-nw-open"
)
"circle"
number between or equal to 0 and 1)
number greater than or equal to 0)
6
number)
1
number greater than or equal to 0)
0
enumerated:
"diameter"
|
"area"
)
"diameter"
color)
colorscale)
boolean)
true
number)
number)
boolean)
true
boolean)
boolean)
object)
color)
number greater than or equal to 0)
colorscale)
boolean)
true
number)
number)
boolean)
true
boolean)
object)
enumerated:
"fraction"
|
"pixels"
)
"pixels"
number greater than or equal to 0)
30
enumerated:
"fraction"
|
"pixels"
)
"fraction"
number greater than or equal to 0)
1
number)
1.02
enumerated:
"left"
|
"center"
|
"right"
)
"left"
number greater than or equal to 0)
10
number)
0.5
enumerated:
"top"
|
"middle"
|
"bottom"
)
"middle"
number greater than or equal to 0)
10
color)
"#444"
number greater than or equal to 0)
1
color)
"#444"
number greater than or equal to 0)
0
color)
"rgba(0,0,0,0)"
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
""
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
"Click to enter colorscale title"
object)
enumerated:
"right"
|
"top"
|
"bottom"
)
"top"
object)
enumerated:
"top left"
|
"top center"
|
"top right"
|
"middle left"
|
"middle center"
|
"middle right"
|
"bottom left"
|
"bottom center"
|
"bottom right"
)
"middle center"
geoid)
geo
choropleth trace is an object with the key "type" equal to "choropleth" (i.e. {"type": "choropleth"}) and any of the keys listed below.
"choropleth")
enumerated:
true
|
false
|
"legendonly"
)
true
boolean)
true
string)
""
number between or equal to 0 and 1)
1
string)
string)
""
flaglist string)
"location", "z", "text", "name" joined with a "+"
OR "all" or "none".
"location", "z", "location+z", "location+z+text", "all"
"all"
object)
string)
number greater than or equal to 0)
data array)
enumerated:
"ISO-3"
|
"USA-states"
|
"country names"
)
"ISO-3"
data array)
data array)
object)
boolean)
true
number)
number)
colorscale)
boolean)
true
boolean)
boolean)
true
object)
enumerated:
"fraction"
|
"pixels"
)
"pixels"
number greater than or equal to 0)
30
enumerated:
"fraction"
|
"pixels"
)
"fraction"
number greater than or equal to 0)
1
number)
1.02
enumerated:
"left"
|
"center"
|
"right"
)
"left"
number greater than or equal to 0)
10
number)
0.5
enumerated:
"top"
|
"middle"
|
"bottom"
)
"middle"
number greater than or equal to 0)
10
color)
"#444"
number greater than or equal to 0)
1
color)
"#444"
number greater than or equal to 0)
0
color)
"rgba(0,0,0,0)"
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
""
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
"Click to enter colorscale title"
object)
enumerated:
"right"
|
"top"
|
"bottom"
)
"top"
geoid)
geo
area trace is an object with the key "type" equal to "area" (i.e. {"type": "area"}) and any of the keys listed below.
"area")
enumerated:
true
|
false
|
"legendonly"
)
true
boolean)
true
string)
""
number between or equal to 0 and 1)
1
string)
string)
""
flaglist string)
"x", "y", "z", "text", "name" joined with a "+"
OR "all" or "none".
"x", "y", "x+y", "x+y+z", "all"
"all"
object)
string)
number greater than or equal to 0)
data array)
data array)
object)
color)
number greater than or equal to 0)
6
enumerated:
"0"
|
"circle"
|
"100"
|
"circle-open"
|
"200"
|
"circle-dot"
|
"300"
|
"circle-open-dot"
|
"1"
|
"square"
|
"101"
|
"square-open"
|
"201"
|
"square-dot"
|
"301"
|
"square-open-dot"
|
"2"
|
"diamond"
|
"102"
|
"diamond-open"
|
"202"
|
"diamond-dot"
|
"302"
|
"diamond-open-dot"
|
"3"
|
"cross"
|
"103"
|
"cross-open"
|
"203"
|
"cross-dot"
|
"303"
|
"cross-open-dot"
|
"4"
|
"x"
|
"104"
|
"x-open"
|
"204"
|
"x-dot"
|
"304"
|
"x-open-dot"
|
"5"
|
"triangle-up"
|
"105"
|
"triangle-up-open"
|
"205"
|
"triangle-up-dot"
|
"305"
|
"triangle-up-open-dot"
|
"6"
|
"triangle-down"
|
"106"
|
"triangle-down-open"
|
"206"
|
"triangle-down-dot"
|
"306"
|
"triangle-down-open-dot"
|
"7"
|
"triangle-left"
|
"107"
|
"triangle-left-open"
|
"207"
|
"triangle-left-dot"
|
"307"
|
"triangle-left-open-dot"
|
"8"
|
"triangle-right"
|
"108"
|
"triangle-right-open"
|
"208"
|
"triangle-right-dot"
|
"308"
|
"triangle-right-open-dot"
|
"9"
|
"triangle-ne"
|
"109"
|
"triangle-ne-open"
|
"209"
|
"triangle-ne-dot"
|
"309"
|
"triangle-ne-open-dot"
|
"10"
|
"triangle-se"
|
"110"
|
"triangle-se-open"
|
"210"
|
"triangle-se-dot"
|
"310"
|
"triangle-se-open-dot"
|
"11"
|
"triangle-sw"
|
"111"
|
"triangle-sw-open"
|
"211"
|
"triangle-sw-dot"
|
"311"
|
"triangle-sw-open-dot"
|
"12"
|
"triangle-nw"
|
"112"
|
"triangle-nw-open"
|
"212"
|
"triangle-nw-dot"
|
"312"
|
"triangle-nw-open-dot"
|
"13"
|
"pentagon"
|
"113"
|
"pentagon-open"
|
"213"
|
"pentagon-dot"
|
"313"
|
"pentagon-open-dot"
|
"14"
|
"hexagon"
|
"114"
|
"hexagon-open"
|
"214"
|
"hexagon-dot"
|
"314"
|
"hexagon-open-dot"
|
"15"
|
"hexagon2"
|
"115"
|
"hexagon2-open"
|
"215"
|
"hexagon2-dot"
|
"315"
|
"hexagon2-open-dot"
|
"16"
|
"octagon"
|
"116"
|
"octagon-open"
|
"216"
|
"octagon-dot"
|
"316"
|
"octagon-open-dot"
|
"17"
|
"star"
|
"117"
|
"star-open"
|
"217"
|
"star-dot"
|
"317"
|
"star-open-dot"
|
"18"
|
"hexagram"
|
"118"
|
"hexagram-open"
|
"218"
|
"hexagram-dot"
|
"318"
|
"hexagram-open-dot"
|
"19"
|
"star-triangle-up"
|
"119"
|
"star-triangle-up-open"
|
"219"
|
"star-triangle-up-dot"
|
"319"
|
"star-triangle-up-open-dot"
|
"20"
|
"star-triangle-down"
|
"120"
|
"star-triangle-down-open"
|
"220"
|
"star-triangle-down-dot"
|
"320"
|
"star-triangle-down-open-dot"
|
"21"
|
"star-square"
|
"121"
|
"star-square-open"
|
"221"
|
"star-square-dot"
|
"321"
|
"star-square-open-dot"
|
"22"
|
"star-diamond"
|
"122"
|
"star-diamond-open"
|
"222"
|
"star-diamond-dot"
|
"322"
|
"star-diamond-open-dot"
|
"23"
|
"diamond-tall"
|
"123"
|
"diamond-tall-open"
|
"223"
|
"diamond-tall-dot"
|
"323"
|
"diamond-tall-open-dot"
|
"24"
|
"diamond-wide"
|
"124"
|
"diamond-wide-open"
|
"224"
|
"diamond-wide-dot"
|
"324"
|
"diamond-wide-open-dot"
|
"25"
|
"hourglass"
|
"125"
|
"hourglass-open"
|
"26"
|
"bowtie"
|
"126"
|
"bowtie-open"
|
"27"
|
"circle-cross"
|
"127"
|
"circle-cross-open"
|
"28"
|
"circle-x"
|
"128"
|
"circle-x-open"
|
"29"
|
"square-cross"
|
"129"
|
"square-cross-open"
|
"30"
|
"square-x"
|
"130"
|
"square-x-open"
|
"31"
|
"diamond-cross"
|
"131"
|
"diamond-cross-open"
|
"32"
|
"diamond-x"
|
"132"
|
"diamond-x-open"
|
"33"
|
"cross-thin"
|
"133"
|
"cross-thin-open"
|
"34"
|
"x-thin"
|
"134"
|
"x-thin-open"
|
"35"
|
"asterisk"
|
"135"
|
"asterisk-open"
|
"36"
|
"hash"
|
"136"
|
"hash-open"
|
"236"
|
"hash-dot"
|
"336"
|
"hash-open-dot"
|
"37"
|
"y-up"
|
"137"
|
"y-up-open"
|
"38"
|
"y-down"
|
"138"
|
"y-down-open"
|
"39"
|
"y-left"
|
"139"
|
"y-left-open"
|
"40"
|
"y-right"
|
"140"
|
"y-right-open"
|
"41"
|
"line-ew"
|
"141"
|
"line-ew-open"
|
"42"
|
"line-ns"
|
"142"
|
"line-ns-open"
|
"43"
|
"line-ne"
|
"143"
|
"line-ne-open"
|
"44"
|
"line-nw"
|
"144"
|
"line-nw-open"
)
"circle"
number between or equal to 0 and 1)
object)
string)
"Click to enter Plot title"
object)
enumerated:
true
|
false
|
"initial"
)
number greater than or equal to 10)
700
number greater than or equal to 10)
450
object)
number greater than or equal to 0)
80
number greater than or equal to 0)
80
number greater than or equal to 0)
100
number greater than or equal to 0)
80
number greater than or equal to 0)
0
boolean)
true
color)
"#fff"
color)
"#fff"
string)
".,"
boolean)
enumerated:
false
)
boolean)
enumerated:
"zoom"
|
"pan"
|
"orbit"
|
"turntable"
)
enumerated:
"x"
|
"y"
|
"closest"
|
false
)
object)
string)
object)
enumerated:
"-"
|
"linear"
|
"log"
|
"date"
|
"category"
)
"-"
enumerated:
true
|
false
|
"reversed"
)
true
enumerated:
"normal"
|
"tozero"
|
"nonnegative"
)
"normal"
array)
boolean)
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
enumerated:
true
|
"ticks"
|
false
|
"all"
|
"allticks"
)
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
string)
""
string)
""
boolean)
color)
"#444"
number greater than or equal to 0)
1
boolean)
color)
"#eee"
number greater than or equal to 0)
1
boolean)
color)
"#444"
number)
1
enumerated:
"free"
|
"/^x([2-9]|[1-9][0-9]+)?$/"
|
"/^y([2-9]|[1-9][0-9]+)?$/"
)
enumerated:
"top"
|
"bottom"
|
"left"
|
"right"
)
enumerated:
"free"
|
"/^x([2-9]|[1-9][0-9]+)?$/"
|
"/^y([2-9]|[1-9][0-9]+)?$/"
)
array)
[0, 1]
number between or equal to 0 and 1)
0
object)
string)
object)
enumerated:
"-"
|
"linear"
|
"log"
|
"date"
|
"category"
)
"-"
enumerated:
true
|
false
|
"reversed"
)
true
enumerated:
"normal"
|
"tozero"
|
"nonnegative"
)
"normal"
array)
boolean)
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
enumerated:
true
|
"ticks"
|
false
|
"all"
|
"allticks"
)
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
string)
""
string)
""
boolean)
color)
"#444"
number greater than or equal to 0)
1
boolean)
color)
"#eee"
number greater than or equal to 0)
1
boolean)
color)
"#444"
number)
1
enumerated:
"free"
|
"/^x([2-9]|[1-9][0-9]+)?$/"
|
"/^y([2-9]|[1-9][0-9]+)?$/"
)
enumerated:
"top"
|
"bottom"
|
"left"
|
"right"
)
enumerated:
"free"
|
"/^x([2-9]|[1-9][0-9]+)?$/"
|
"/^y([2-9]|[1-9][0-9]+)?$/"
)
array)
[0, 1]
number between or equal to 0 and 1)
0
object)
color)
"rgba(0,0,0,0)"
object)
object)
object)
object)
object)
enumerated:
"auto"
|
"cube"
|
"data"
|
"manual"
)
"auto"
object)
object)
boolean)
true
boolean)
true
number greater than or equal to 0)
2
color)
"rgb(0,0,0)"
boolean)
color)
"rgba(204, 204, 204, 0.5)"
boolean)
true
string)
object)
enumerated:
"-"
|
"linear"
|
"log"
|
"date"
|
"category"
)
"-"
enumerated:
true
|
false
|
"reversed"
)
true
enumerated:
"normal"
|
"tozero"
|
"nonnegative"
)
"normal"
array)
boolean)
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
enumerated:
true
|
"ticks"
|
false
|
"all"
|
"allticks"
)
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
string)
""
string)
""
boolean)
color)
"#444"
number greater than or equal to 0)
1
boolean)
color)
"rgb(204, 204, 204)"
number greater than or equal to 0)
1
boolean)
color)
"#444"
number)
1
object)
boolean)
true
boolean)
true
number greater than or equal to 0)
2
color)
"rgb(0,0,0)"
boolean)
color)
"rgba(204, 204, 204, 0.5)"
boolean)
true
string)
object)
enumerated:
"-"
|
"linear"
|
"log"
|
"date"
|
"category"
)
"-"
enumerated:
true
|
false
|
"reversed"
)
true
enumerated:
"normal"
|
"tozero"
|
"nonnegative"
)
"normal"
array)
boolean)
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
enumerated:
true
|
"ticks"
|
false
|
"all"
|
"allticks"
)
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
string)
""
string)
""
boolean)
color)
"#444"
number greater than or equal to 0)
1
boolean)
color)
"rgb(204, 204, 204)"
number greater than or equal to 0)
1
boolean)
color)
"#444"
number)
1
object)
boolean)
true
boolean)
true
number greater than or equal to 0)
2
color)
"rgb(0,0,0)"
boolean)
color)
"rgba(204, 204, 204, 0.5)"
boolean)
true
string)
object)
enumerated:
"-"
|
"linear"
|
"log"
|
"date"
|
"category"
)
"-"
enumerated:
true
|
false
|
"reversed"
)
true
enumerated:
"normal"
|
"tozero"
|
"nonnegative"
)
"normal"
array)
boolean)
enumerated:
"auto"
|
"linear"
|
"array"
)
integer greater than or equal to 0)
0
number)
0
number or categorical coordinate string)
1
data array)
data array)
enumerated:
"outside"
|
"inside"
|
""
)
enumerated:
true
|
"ticks"
|
false
|
"all"
|
"allticks"
)
number greater than or equal to 0)
5
number greater than or equal to 0)
1
color)
"#444"
boolean)
true
object)
angle)
auto
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
string)
""
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"all"
|
"first"
|
"last"
|
"none"
)
"all"
enumerated:
"none"
|
"e"
|
"E"
|
"power"
|
"SI"
|
"B"
)
"B"
string)
""
string)
""
boolean)
color)
"#444"
number greater than or equal to 0)
1
boolean)
color)
"rgb(204, 204, 204)"
number greater than or equal to 0)
1
boolean)
color)
"#444"
number)
1
object)
object)
enumerated:
"110"
|
"50"
)
"110"
enumerated:
"world"
|
"usa"
|
"europe"
|
"asia"
|
"africa"
|
"north america"
|
"south america"
)
"world"
object)
enumerated:
"equirectangular"
|
"mercator"
|
"orthographic"
|
"natural earth"
|
"kavrayskiy7"
|
"miller"
|
"robinson"
|
"eckert4"
|
"azimuthal equal area"
|
"azimuthal equidistant"
|
"conic equal area"
|
"conic conformal"
|
"conic equidistant"
|
"gnomonic"
|
"stereographic"
|
"mollweide"
|
"hammer"
|
"transverse mercator"
|
"albers usa"
)
object)
array)
number between or equal to 0 and 10)
1
boolean)
color)
"#444"
number greater than or equal to 0)
1
boolean)
color)
"#F0DC82"
boolean)
color)
"#3399FF"
boolean)
color)
"#3399FF"
boolean)
color)
"#3399FF"
number greater than or equal to 0)
1
boolean)
color)
"#444"
number greater than or equal to 0)
1
boolean)
color)
"#444"
number greater than or equal to 0)
1
boolean)
color)
"#444"
number greater than or equal to 0)
1
color)
"#fff"
object)
array)
boolean)
number)
number)
color)
"#eee"
number greater than or equal to 0)
1
object)
array)
boolean)
number)
number)
color)
"#eee"
number greater than or equal to 0)
1
object)
color)
color)
"#444"
number greater than or equal to 0)
0
object)
flaglist string)
"reversed", "grouped" joined with a "+"
OR "normal".
"reversed", "grouped", "reversed+grouped", "normal"
number greater than or equal to 0)
10
number between or equal to -2 and 3)
1.02
enumerated:
"auto"
|
"left"
|
"center"
|
"right"
)
"left"
number between or equal to -2 and 3)
1
enumerated:
"auto"
|
"top"
|
"middle"
|
"bottom"
)
"auto"
array of objects)
string)
angle)
0
object)
number between or equal to 0 and 1)
1
enumerated:
"left"
|
"center"
|
"right"
)
"center"
color)
"rgba(0,0,0,0)"
color)
"rgba(0,0,0,0)"
number greater than or equal to 0)
1
number greater than or equal to 0)
1
boolean)
true
color)
integer between or equal to 0 and 8)
1
number greater than or equal to 0.3)
1
number greater than or equal to 0.1)
number)
-10
number)
-30
enumerated:
"paper"
|
"/^x([2-9]|[1-9][0-9]+)?$/"
)
number)
enumerated:
"auto"
|
"left"
|
"center"
|
"right"
)
"auto"
enumerated:
"paper"
|
"/^y([2-9]|[1-9][0-9]+)?$/"
)
number)
enumerated:
"auto"
|
"top"
|
"middle"
|
"bottom"
)
"auto"
array of objects)
number between or equal to 0 and 1)
1
object)
color)
"rgba(0,0,0,0)"
enumerated:
"circle"
|
"rect"
|
"path"
|
"line"
)
enumerated:
"paper"
|
"/^x([2-9]|[1-9][0-9]+)?$/"
)
number or categorical coordinate string)
number or categorical coordinate string)
enumerated:
"paper"
|
"/^y([2-9]|[1-9][0-9]+)?$/"
)
number or categorical coordinate string)
number or categorical coordinate string)
string)
object)
array)
array)
[0, 1]
number)
boolean)
boolean)
enumerated:
"horizontal"
|
"vertical"
)
number greater than or equal to 0)
color)
string)
number)
boolean)
object)
array)
array)
[0, 1]
boolean)
boolean)
enumerated:
"horizontal"
|
"vertical"
)
number greater than or equal to 0)
color)
string)
number)
boolean)
enumerated:
"clockwise"
|
"counterclockwise"
)
angle)